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

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


http://hg.python.org/cpython/rev/f6fdf3457f74
changeset:   83331:f6fdf3457f74
branch:      3.3
parent:      83328:f99140a060d3
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
@@ -862,8 +862,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