From a6928aadc5e41df82fc5f49f803dd8225749dff3 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Thu, 3 Oct 2013 23:31:56 +0200 Subject: [PATCH] clojure.html.markdown: Fix typo --- clojure.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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