summaryrefslogtreecommitdiffhomepage
path: root/hy.html.markdown
diff options
context:
space:
mode:
authorSwapnil Joshi <swapnil.gnu@gmail.com>2014-12-16 22:33:08 +0530
committerSwapnil Joshi <swapnil.gnu@gmail.com>2014-12-16 22:33:08 +0530
commit12e01249b37d65d8e7cf95b311782531978552d5 (patch)
treec26912df285f8532e7d9c17230cec5248b1cfcaf /hy.html.markdown
parentcb2e6b6f997231e03fb593375add7db3dd5711c6 (diff)
Changed function name to match function call
Diffstat (limited to 'hy.html.markdown')
-rw-r--r--hy.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/hy.html.markdown b/hy.html.markdown
index 04bd05c9..9beaff0c 100644
--- a/hy.html.markdown
+++ b/hy.html.markdown
@@ -83,7 +83,7 @@ True ; => True
(greet "bilbo") ;=> "hello bilbo"
; functions can take optional arguments as well as keyword arguments
-(defn foolist [arg1 &optional [arg2 2]]
+(defn foolists [arg1 &optional [arg2 2]]
[arg1 arg2])
(foolists 3) ;=> [3 2]