From 49df05013ae1f51bec5686b135784af8f70d0d81 Mon Sep 17 00:00:00 2001 From: Alan Thompson Date: Mon, 25 Jan 2016 08:26:00 -0800 Subject: [PATCH] Update README.md Added clojure `use` statement required to make examples work. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 5681cc7..d650d79 100644 --- a/README.md +++ b/README.md @@ -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}])