summaryrefslogtreecommitdiffhomepage
path: root/clojure.html.markdown
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-10-03 23:31:56 +0200
committerBastien Guerry <bzg@altern.org>2013-10-04 11:11:43 +0200
commit1fb3f1e67c3e7d6eb66db8052df806ae52824dce (patch)
tree130329996a93e9332a5a32b704a961d5b756c9e4 /clojure.html.markdown
parenta6928aadc5e41df82fc5f49f803dd8225749dff3 (diff)
clojure.html.markdown: Fix another typo
Diffstat (limited to 'clojure.html.markdown')
-rw-r--r--clojure.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/clojure.html.markdown b/clojure.html.markdown
index 35055602..afd1c1fb 100644
--- a/clojure.html.markdown
+++ b/clojure.html.markdown
@@ -341,7 +341,7 @@ keymap ; => {:a 1, :b 2, :c 3}
(swap! my-atom assoc :a 1) ; Sets my-atom to the result of (assoc {} :a 1)
(swap! my-atom assoc :b 2) ; Sets my-atom to the result of (assoc {:a 1} :b 2)
- ; Use '@' to dereference the atom and get the value
+; Use '@' to dereference the atom and get the value
my-atom ;=> Atom<#...> (Returns the Atom object)
@my-atom ; => {:a 1 :b 2}