Fixing *args and **kwargs notation in docs

This commit is contained in:
Christopher Allan Webber 2013-05-09 16:04:12 -05:00
parent c5dbc39ee1
commit 204bc9c39e

View File

@ -419,7 +419,7 @@ looks like:
The difference here is that since it's a dictionary, you can't rely on
any specific ordering to the arguments.
Hy also supports **args and **kwargs. In Python::
Hy also supports ``*args`` and ``**kwargs``. In Python::
def some_func(foo, bar, *args, **kwargs):
import pprint