Skip to content

Commit 485c1b2

Browse files
authored
Fix typo in docstring in core.py
1 parent da4b8f9 commit 485c1b2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncio/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ def run_until_complete(main_task=None):
259259
def run(coro):
260260
"""Create a new task from the given coroutine and run it until it completes.
261261
262-
Returns the value returned be *coro*.
262+
Returns the value returned by *coro*.
263263
"""
264264

265265
return run_until_complete(create_task(coro))

0 commit comments

Comments
 (0)