Renaming "language spec" to "tutorial"

This commit is contained in:
Christopher Allan Webber 2013-04-03 16:21:31 -05:00
parent c627fad5e2
commit 976d8b5bf1
2 changed files with 5 additions and 4 deletions

View File

@ -36,5 +36,5 @@ Contents:
.. toctree::
:maxdepth: 3
language/index
language/tutorial
.. library/index

View File

@ -1,5 +1,6 @@
Language Spec
=============
Tutorial
========
This bit covers a bit about Hy's lovable quirks and eccentricities.
@ -380,7 +381,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))