summaryrefslogtreecommitdiff
path: root/Objects/dictobject.c
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-09-09 03:57:23 +0300
committerBerker Peksag <berker.peksag@gmail.com>2016-09-09 03:57:23 +0300
commit71c01d43a7839bfd1ec30991805af9bc41f3fafd (patch)
treeefd9a1b20249d82555f639d3fc6c43453b51dc57 /Objects/dictobject.c
parentba7224f934165165e2ecdfcf0c1b467912e0e935 (diff)
downloadcpython-git-71c01d43a7839bfd1ec30991805af9bc41f3fafd.tar.gz
Issue #28033: Fix typo in dictobject.c
Patch by Wesley Emeneker.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r--Objects/dictobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 2dcc847512..461eb57ccc 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: