Fix typo in doc (#128917)

This commit is contained in:
Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) 2025-01-16 22:02:17 +05:30 committed by GitHub
parent f48702dade
commit 211f41316b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@
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).