]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Closes #17726: small clarification in design FAQ.
authorGeorg Brandl <georg@python.org>
Sun, 14 Apr 2013 08:31:06 +0000 (10:31 +0200)
committerGeorg Brandl <georg@python.org>
Sun, 14 Apr 2013 08:31:06 +0000 (10:31 +0200)
Doc/faq/design.rst

index 04c8c1f74985a3ceec1f8b353e428da0219276b8..724eecff522c7eb28bc85a4b7633e0eca7f73f55 100644 (file)
@@ -862,8 +862,8 @@ There are several reasons to allow this.
 
 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::