Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion InternalDocs/generators.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ execution state.

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