From 4db667322c1869342704805dcb8b64bb4b2f7a97 Mon Sep 17 00:00:00 2001 From: Jakukyo Friel Date: Thu, 22 Sep 2016 08:32:35 +0800 Subject: [PATCH] Doc: Fix typo (missing quote) (#1096) --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 7f9b4eb..834332d 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -292,7 +292,7 @@ You can do the following: (if (try-some-thing) (do (print "this is if true") - (print "and why not, let's keep talking about how true it is!)) + (print "and why not, let's keep talking about how true it is!")) (print "this one's still simply just false")) You can see that we used ``do`` to wrap multiple statements. If you're