From b761c7dc83ef9954af2e95ebef44696f372e9eef Mon Sep 17 00:00:00 2001 From: "Joe H. Rahme" Date: Sun, 21 Jul 2013 02:59:35 +0200 Subject: [PATCH] Fixes a mistake (most probably a typo) in the tutorial. --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 0c3838b..5ce99f0 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -392,7 +392,7 @@ In python we might see:: The same thing in Hy:: - => (defn optional_arg [pos1 pos2 &optional keyword1 [keyword2 88]] + => (defn optional_arg [pos1 pos2 &optional keyword1 [keyword2 42]] ... [pos1 pos2 keyword1 keyword2]) => (optional_arg 1 2) [1 2 None 42]