[Python-checkins] cpython: Fix typo

raymond.hettinger python-checkins at python.org
Wed Mar 25 05:13:04 CET 2015


https://hg.python.org/cpython/rev/586ad38731c4
changeset:   95194:586ad38731c4
user:        Raymond Hettinger <python at rcn.com>
date:        Tue Mar 24 21:12:57 2015 -0700
summary:
  Fix typo

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


diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -841,7 +841,7 @@
    points.  If for some reason these methods become popular, it is not
    hard to re-implement this using direct data movement (similar to
    the code used in list slice assignments) and achieve a performance
-   boost (by moving each pointer only one instead of twice).
+   boost (by moving each pointer only once instead of twice).
 */
 
 static PyObject *

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


More information about the Python-checkins mailing list