From 204bc9c39e1c6b843d3e2ea26d88d5d3ecc985f2 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Thu, 9 May 2013 16:04:12 -0500 Subject: [PATCH] Fixing *args and **kwargs notation in docs --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 1fcb3e5..9b3127d 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -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