Update DOM.md

This commit is contained in:
Aaron Craelius 2014-11-16 14:26:16 -05:00
parent 7c8ba9d735
commit 533a276100

2
DOM.md
View file

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