clojure.html.markdown: Fix typo

This commit is contained in:
Bastien Guerry 2013-10-03 23:31:56 +02:00
parent 7aa69ae3d7
commit a6928aadc5

View File

@ -63,7 +63,7 @@ and often automatically.
; If you want to create a literal list of data, use ' to stop it from ; If you want to create a literal list of data, use ' to stop it from
; being evaluated ; being evaluated
'(+ 1 2) ; => (+ 1 2) '(+ 1 2) ; => (+ 1 2)
; (shorthand for (quote (+ 1 2)) ; (shorthand for (quote (+ 1 2)))
; You can eval a quoted list ; You can eval a quoted list
(eval '(+ 1 2)) ; => 3 (eval '(+ 1 2)) ; => 3