summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-09 00:57:23 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-09-09 00:57:23 (GMT)
commit71c01d43a7839bfd1ec30991805af9bc41f3fafd (patch)
treeefd9a1b20249d82555f639d3fc6c43453b51dc57 /Objects
parentba7224f934165165e2ecdfcf0c1b467912e0e935 (diff)
downloadcpython-71c01d43a7839bfd1ec30991805af9bc41f3fafd.zip
cpython-71c01d43a7839bfd1ec30991805af9bc41f3fafd.tar.gz
cpython-71c01d43a7839bfd1ec30991805af9bc41f3fafd.tar.bz2
Issue #28033: Fix typo in dictobject.c
Patch by Wesley Emeneker.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 2dcc847..461eb57 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -10,7 +10,7 @@
This implements the dictionary's hashtable.
-As of Python 3.6, this is compact and orderd. Basic idea is described here.
+As of Python 3.6, this is compact and ordered. Basic idea is described here.
https://morepypy.blogspot.com/2015/01/faster-more-memory-efficient-and-more.html
layout: