Skip to content

Commit 5b1fad3

Browse files
authored
Update compound_stmts.rst
1 parent cab198f commit 5b1fad3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/reference/compound_stmts.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ The :keyword:`for` statement is used to iterate over the elements of a sequence
157157
for_stmt: "for" `target_list` "in" `starred_expression_list` ":" `suite`
158158
: ["else" ":" `suite`]
159159

160-
The `starred_expression_list` expression is evaluated once; it should
160+
The ``starred_expression_list`` expression is evaluated once; it should
161161
yield an :term:`iterable` object. An :term:`iterator` is created for that iterable.
162162
The first item provided
163163
by the iterator is then assigned to the target list using the standard

0 commit comments

Comments
 (0)