diff options
author | Swapnil Joshi <swapnil.gnu@gmail.com> | 2014-12-16 22:33:08 +0530 |
---|---|---|
committer | Swapnil Joshi <swapnil.gnu@gmail.com> | 2014-12-16 22:33:08 +0530 |
commit | 12e01249b37d65d8e7cf95b311782531978552d5 (patch) | |
tree | c26912df285f8532e7d9c17230cec5248b1cfcaf /hy.html.markdown | |
parent | cb2e6b6f997231e03fb593375add7db3dd5711c6 (diff) |
Changed function name to match function call
Diffstat (limited to 'hy.html.markdown')
-rw-r--r-- | hy.html.markdown | 2 |
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] |