From a0acbd7948df0e39d46d6cb28ce1286e6a76c5c9 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Mon, 1 Apr 2013 10:12:15 -0500 Subject: [PATCH] Clarifying that we won't be executing the comment, but will exec the code! --- docs/language/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/language/index.rst b/docs/language/index.rst index 82e7c68..f1b03ca 100644 --- a/docs/language/index.rst +++ b/docs/language/index.rst @@ -237,7 +237,7 @@ Comments start with semicolons:: (print "this will run") ; (print "but this will not") - (+ 1 2 3) ; we won't execute this either + (+ 1 2 3) ; we'll execute the addition, but not this comment! TODO