]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in doc (#128917)
authorSrinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com>
Thu, 16 Jan 2025 16:32:17 +0000 (22:02 +0530)
committerGitHub <noreply@github.com>
Thu, 16 Jan 2025 16:32:17 +0000 (16:32 +0000)
InternalDocs/generators.md

index 608bd215aae65a267a5b92f8241c53954b41b6f6..87fbb91236844bf97a1d4bf64c9b2e03977534f8 100644 (file)
@@ -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).