diff --git a/docs/language/tutorial.rst b/docs/language/tutorial.rst index 4efbc82..b0d6ed7 100644 --- a/docs/language/tutorial.rst +++ b/docs/language/tutorial.rst @@ -380,7 +380,7 @@ Let's take the classic: (loop (print (eval (read)))) Rather then write it like that, we can write it as follows: -1 + .. code-block:: clj (-> (read) (eval) (print) (loop))