Skip to content

Commit f190eb5

Browse files
emilyemorehousebitdancer
authored andcommitted
bpo-32452: clarify term 'brackets' in generator tutorial (#5079)
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. (#5079)
1 parent 7cc42c3 commit f190eb5

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)