summaryrefslogtreecommitdiffhomepage
path: root/clojure.html.markdown
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-10-03 23:40:38 +0200
committerBastien Guerry <bzg@altern.org>2013-10-04 11:19:36 +0200
commit9a4721785cd51360472c329d1c9614fb6783d5e1 (patch)
tree55f611cfc4ac9e2d37d68676689af0f8fc4a9e61 /clojure.html.markdown
parent626e963aa9edca53302562c5593a99fd8a002141 (diff)
clojure.html.markdown: Fix an error (s/value/key)
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 afd1c1fb..779c28ae 100644
--- a/clojure.html.markdown
+++ b/clojure.html.markdown
@@ -205,7 +205,7 @@ keymap ; => {:a 1, :c 3, :b 2}
;("a" stringmap)
; => Exception: java.lang.String cannot be cast to clojure.lang.IFn
-; Retrieving a non-present value returns nil
+; Retrieving a non-present key returns nil
(stringmap "d") ; => nil
; Use assoc to add new keys to hash-maps