Update README.md

This commit is contained in:
Aaron Craelius 2014-11-17 16:12:23 -05:00
parent 1e1d976714
commit f0980bb777

View file

@ -98,7 +98,7 @@ Fundamentally, cursors are based on [lenses](https://speakerdeck.com/markhibberd
(def my-atom (atom 0))
(def a-str (cursor my-atom print-number parse-number))
;; @a-str -> "0"
(reset! ab0 "1.2")
(reset! a-str "1.2")
(println @my-atom)
;; 1.2
```