Update README.md

Added clojure `use` statement required to make examples work.
This commit is contained in:
Alan Thompson 2016-01-25 08:26:00 -08:00
parent d56ea62e00
commit 49df05013a

View file

@ -30,6 +30,7 @@ You can ask questions about Specter by opening an issue on Github and [labeling
Here's how to increment all the even values for :a keys in a sequence of maps:
```clojure
user> (use 'com.rpl.specter)
user> (transform [ALL :a even?]
inc
[{:a 1} {:a 2} {:a 4} {:a 3}])