From 976d8b5bf13e64360f3326fa111f7290f132afef Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Wed, 3 Apr 2013 16:21:31 -0500 Subject: [PATCH] Renaming "language spec" to "tutorial" --- docs/index.rst | 2 +- docs/language/{index.rst => tutorial.rst} | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) rename docs/language/{index.rst => tutorial.rst} (99%) diff --git a/docs/index.rst b/docs/index.rst index 2495b1e..9998081 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -36,5 +36,5 @@ Contents: .. toctree:: :maxdepth: 3 - language/index + language/tutorial .. library/index diff --git a/docs/language/index.rst b/docs/language/tutorial.rst similarity index 99% rename from docs/language/index.rst rename to docs/language/tutorial.rst index 657c205..bdbb455 100644 --- a/docs/language/index.rst +++ b/docs/language/tutorial.rst @@ -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))