From: Georg Brandl Date: Sun, 14 Apr 2013 08:31:06 +0000 (+0200) Subject: Closes #17726: small clarification in design FAQ. X-Git-Tag: v2.7.5~73 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dc18cb963bf91fbb3155a4afddfca26bca8861cc;p=thirdparty%2FPython%2Fcpython.git Closes #17726: small clarification in design FAQ. --- diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index 833e58666b8a..73c90af0372c 100644 --- a/Doc/faq/design.rst +++ b/Doc/faq/design.rst @@ -910,8 +910,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::