File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ way. It includes an EDN parser (based on [clojure.tools.reader](https://github.c
55printer, as well as an EDN-aware zipper implementation (based on [ fast-zip] ( https://github.com/akhudek/fast-zip ) ).
66
77[ ![ Build Status] ( https://travis-ci.org/xsc/rewrite-clj.svg?branch=master )] ( https://travis-ci.org/xsc/rewrite-clj )
8- [ ![ endorse] ( https://api.coderwall.com/xsc/endorsecount.png )] ( https://coderwall.com/xsc )
98
109This project is similar to Christophe Grand's [ sjacket] ( https://github.com/cgrand/sjacket ) . In fact, I found it hard to _ use_
1110sjacket, partly because of the underlying data structure (a [ parsely] ( https://github.com/cgrand/parsley ) -generated tree including
@@ -159,7 +158,7 @@ containing said structures, e.g.:
159158
160159(z/vector? data) ; ; => true
161160(z/sexpr data) ; ; => [1 2 3]
162- (-> data (z/get 1 ) z/node) ; ; => [: token 2]
161+ (-> data (z/get 1 ) z/node) ; ; => #< token: 2>
163162(-> data (z/assoc 1 5 ) z/sexpr) ; ; => [1 5 3]
164163
165164(->> data (z/map #(z/edit % + 4 )) z/->root-string)
@@ -170,6 +169,6 @@ See the [auto-generated documentation](http://xsc.github.io/rewrite-clj/) for mo
170169
171170## License
172171
173- Copyright © 2013 Yannick Scherer
172+ Copyright © 2013-2015 Yannick Scherer
174173
175174Distributed under the Eclipse Public License, the same as Clojure.
You can’t perform that action at this time.
0 commit comments