Skip to content

Commit 211f413

Browse files
Fix typo in doc (#128917)
1 parent f48702d commit 211f413

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

InternalDocs/generators.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ execution state.
1111

1212
A generator object resumes execution in its frame when its `send()`
1313
method is called. This is analogous to a function executing in its own
14-
fram when it is called, but a function returns to the calling frame only once,
14+
frame when it is called, but a function returns to the calling frame only once,
1515
while a generator "returns" execution to the caller's frame every time
1616
it emits a new item with a
1717
[`yield` expression](https://docs.python.org/dev/reference/expressions.html#yield-expressions).

0 commit comments

Comments
 (0)