[Python-checkins] cpython (2.7): Closes #17726: small clarification in design FAQ.

georg.brandl python-checkins at python.org
Sun Apr 14 10:31:09 CEST 2013


http://hg.python.org/cpython/rev/ab35b5e81317
changeset:   83330:ab35b5e81317
branch:      2.7
parent:      83327:0b18017221ed
user:        Georg Brandl <georg at python.org>
date:        Sun Apr 14 10:31:06 2013 +0200
summary:
  Closes #17726: small clarification in design FAQ.

files:
  Doc/faq/design.rst |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -910,8 +910,8 @@
 
 When you have a literal value for a list, tuple, or dictionary spread across
 multiple lines, it's easier to add more elements because you don't have to
-remember to add a comma to the previous line.  The lines can also be sorted in
-your editor without creating a syntax error.
+remember to add a comma to the previous line.  The lines can also be reordered
+without creating a syntax error.
 
 Accidentally omitting the comma can lead to errors that are hard to diagnose.
 For example::

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


More information about the Python-checkins mailing list