diff options
author | ven <vendethiel@hotmail.fr> | 2014-12-16 19:44:10 +0100 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2014-12-16 19:44:10 +0100 |
commit | fe856e7117c49aace8417f7fc1ccedaff6fcca8c (patch) | |
tree | c26912df285f8532e7d9c17230cec5248b1cfcaf | |
parent | cb2e6b6f997231e03fb593375add7db3dd5711c6 (diff) | |
parent | 12e01249b37d65d8e7cf95b311782531978552d5 (diff) |
Merge pull request #888 from swapnilmj/patch-1
Changed function name to match function call
-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] |