[Python-checkins] cpython: Issue #28033: Fix typo in dictobject.c

berker.peksag python-checkins at python.org
Thu Sep 8 20:57:00 EDT 2016


https://hg.python.org/cpython/rev/30f20247bd14
changeset:   103385:30f20247bd14
parent:      103383:4a50d87808a6
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Fri Sep 09 03:57:23 2016 +0300
summary:
  Issue #28033: Fix typo in dictobject.c

Patch by Wesley Emeneker.

files:
  Objects/dictobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/dictobject.c b/Objects/dictobject.c
--- 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:

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list