Skip to content

Commit 51aefd8

Browse files
author
Yannick Scherer
committed
adjust README.md
1 parent 71813c2 commit 51aefd8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ way. It includes an EDN parser (based on [clojure.tools.reader](https://github.c
55
printer, 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

109
This project is similar to Christophe Grand's [sjacket](https://github.com/cgrand/sjacket). In fact, I found it hard to _use_
1110
sjacket, 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 &copy; 2013 Yannick Scherer
172+
Copyright &copy; 2013-2015 Yannick Scherer
174173

175174
Distributed under the Eclipse Public License, the same as Clojure.

0 commit comments

Comments
 (0)