summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2015-09-30 10:48:59 +0800
committerAdam Bard <github@adambard.com>2015-09-30 10:48:59 +0800
commit09874aa5c008c3944093dc2d3a5ddca489e2c998 (patch)
tree5b5c2b48395e24f2460b6b4162f210361ca3c48f
parentb0036199c4fa6974f285e3b9520e9e058294d584 (diff)
map->dict
-rw-r--r--python.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/python.html.markdown b/python.html.markdown
index 16a94c8f..352f7349 100644
--- a/python.html.markdown
+++ b/python.html.markdown
@@ -412,7 +412,7 @@ varargs(1, 2, 3) # => (1, 2, 3)
# You can define functions that take a variable number of
-# keyword args, as well, which will be interpreted as a map if you do not use **
+# keyword args, as well, which will be interpreted as a dict if you do not use **
def keyword_args(**kwargs):
return kwargs