We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f48702d commit 211f413Copy full SHA for 211f413
InternalDocs/generators.md
@@ -11,7 +11,7 @@ execution state.
11
12
A generator object resumes execution in its frame when its `send()`
13
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,
+frame when it is called, but a function returns to the calling frame only once,
15
while a generator "returns" execution to the caller's frame every time
16
it emits a new item with a
17
[`yield` expression](https://docs.python.org/dev/reference/expressions.html#yield-expressions).
0 commit comments