From e2614cc24a5011c3c218da56dc6cd945e67265b3 Mon Sep 17 00:00:00 2001 From: Johnathon Sage Date: Sat, 14 Nov 2015 15:48:39 -0500 Subject: [PATCH] Update tutorial.rst Changed case of function call in Macro --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index a16ac51..4759ec1 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -514,7 +514,7 @@ the program starts executing normally. Very simple example: => (defmacro hello [person] ... `(print "Hello there," ~person)) - => (Hello "Tuukka") + => (hello "Tuukka") Hello there, Tuukka The thing to notice here is that hello macro doesn't output anything on