diff options
author | Georg Brandl <georg@python.org> | 2013-04-14 08:31:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-04-14 08:31:06 (GMT) |
commit | dc18cb963bf91fbb3155a4afddfca26bca8861cc (patch) | |
tree | e1aff10bc3c844112c3199accfb1902377a1809b /Doc/faq | |
parent | 30a88facfea8b0b0f4b79f32a3e7461fddc150ad (diff) | |
download | cpython-dc18cb963bf91fbb3155a4afddfca26bca8861cc.zip cpython-dc18cb963bf91fbb3155a4afddfca26bca8861cc.tar.gz cpython-dc18cb963bf91fbb3155a4afddfca26bca8861cc.tar.bz2 |
Closes #17726: small clarification in design FAQ.
Diffstat (limited to 'Doc/faq')
-rw-r--r-- | Doc/faq/design.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst index 833e586..73c90af 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:: |