Skip to content

Commit f24c185

Browse files
miss-islingtonbitdancer
authored andcommitted
bpo-32452: clarify term 'brackets' in generator tutorial (GH-5079) (#5081)
Updates documentation for generator expressions in classes tutorial: Clarify usage of ambiguous term "brackets" by replacing with "square brackets". Updated subsequent lines to respect line breaks. (GH-5079) (cherry picked from commit f190eb5)
1 parent aea95c2 commit f24c185

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Doc/tutorial/classes.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -876,9 +876,9 @@ Generator Expressions
876876
=====================
877877

878878
Some simple generators can be coded succinctly as expressions using a syntax
879-
similar to list comprehensions but with parentheses instead of brackets. These
880-
expressions are designed for situations where the generator is used right away
881-
by an enclosing function. Generator expressions are more compact but less
879+
similar to list comprehensions but with parentheses instead of square brackets.
880+
These expressions are designed for situations where the generator is used right
881+
away by an enclosing function. Generator expressions are more compact but less
882882
versatile than full generator definitions and tend to be more memory friendly
883883
than equivalent list comprehensions.
884884

0 commit comments

Comments
 (0)