From d8c29f51d68f655e3d568583c2d9ce54589dca35 Mon Sep 17 00:00:00 2001 From: Abhishek L Date: Sun, 1 Dec 2013 01:20:58 +0530 Subject: [PATCH] docs/api:formatting fixes in `quote' and `unquote' A newline was omitted which caused the examples not to render for quote and unquote forms --- docs/language/api.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/language/api.rst b/docs/language/api.rst index bac3138..2598b57 100644 --- a/docs/language/api.rst +++ b/docs/language/api.rst @@ -736,6 +736,7 @@ using the backquote (`) symbol. .. code-block:: clj + ;; let `qux' be a variable with value (bar baz) `(foo ~qux) ; equivalent to '(foo (bar baz)) @@ -751,6 +752,7 @@ be alternatively written using the (') symbol .. code-block:: clj + => (setv x '(print "Hello World")) ; variable x is set to expression & not evaluated => x @@ -758,6 +760,7 @@ be alternatively written using the (') symbol => (eval x) Hello World + require -------