Merge pull request #260 from rahmu/master

Fixes a mistake (most probably a typo) in the tutorial.
This commit is contained in:
Julien Danjou 2013-07-21 00:56:42 -07:00
commit a71e09b1cf

View File

@ -392,7 +392,7 @@ In python we might see::
The same thing in Hy::
=> (defn optional_arg [pos1 pos2 &optional keyword1 [keyword2 88]]
=> (defn optional_arg [pos1 pos2 &optional keyword1 [keyword2 42]]
... [pos1 pos2 keyword1 keyword2])
=> (optional_arg 1 2)
[1 2 None 42]