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-03 23:31:56 +0200
commita6928aadc5e41df82fc5f49f803dd8225749dff3 (patch)
treee6cafb7854675be922c089c60c61191796295f5a /clojure.html.markdown
parent7aa69ae3d7e616e1664c5f11d264d827e7bc5fce (diff)
clojure.html.markdown: Fix 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 a502a95c..35055602 100644
--- a/clojure.html.markdown
+++ b/clojure.html.markdown
@@ -63,7 +63,7 @@ and often automatically.
; If you want to create a literal list of data, use ' to stop it from
; being evaluated
'(+ 1 2) ; => (+ 1 2)
-; (shorthand for (quote (+ 1 2))
+; (shorthand for (quote (+ 1 2)))
; You can eval a quoted list
(eval '(+ 1 2)) ; => 3