summaryrefslogtreecommitdiffhomepage
path: root/hy.html.markdown
diff options
context:
space:
mode:
authorGeoff Liu <g@geoffliu.me>2015-01-18 13:07:39 -0700
committerGeoff Liu <g@geoffliu.me>2015-01-18 13:07:39 -0700
commit31faf1a6a1c35802cf3676ec1a7f54d86411b566 (patch)
tree5ccca54b8837fec9a8d6d60d2bda6db4162078e7 /hy.html.markdown
parent40c38c125b94430b518d7e402d595694149b7c53 (diff)
parentc053f1559bb357d9e8ced2452096bf3a95cc7ddb (diff)
Merge branch 'master' of github.com:geoffliu/learnxinyminutes-docs
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]