summaryrefslogtreecommitdiffhomepage
path: root/hy.html.markdown
diff options
context:
space:
mode:
authorven <vendethiel@hotmail.fr>2014-12-16 19:44:10 +0100
committerven <vendethiel@hotmail.fr>2014-12-16 19:44:10 +0100
commitfe856e7117c49aace8417f7fc1ccedaff6fcca8c (patch)
treec26912df285f8532e7d9c17230cec5248b1cfcaf /hy.html.markdown
parentcb2e6b6f997231e03fb593375add7db3dd5711c6 (diff)
parent12e01249b37d65d8e7cf95b311782531978552d5 (diff)
Merge pull request #888 from swapnilmj/patch-1
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]