diff options
author | Bastien Guerry <bzg@altern.org> | 2013-10-03 23:31:56 +0200 |
---|---|---|
committer | Bastien Guerry <bzg@altern.org> | 2013-10-03 23:31:56 +0200 |
commit | a6928aadc5e41df82fc5f49f803dd8225749dff3 (patch) | |
tree | e6cafb7854675be922c089c60c61191796295f5a | |
parent | 7aa69ae3d7e616e1664c5f11d264d827e7bc5fce (diff) |
clojure.html.markdown: Fix typo
-rw-r--r-- | clojure.html.markdown | 2 |
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 |