Minor documentation fixes

This commit is contained in:
Rapptz
2020-01-21 21:34:58 -05:00
parent 706a333287
commit 17f343b03e
2 changed files with 3 additions and 3 deletions

View File

@ -346,14 +346,14 @@ async def sleep_until(when, result=None):
If the time supplied is in the past this function will yield instantly.
.. versionadded:: 1.3
Parameters
-----------
when: :class:`datetime.datetime`
The timestamp in which to sleep until.
result: Any
If provided is returned to the caller when the coroutine completes.
.. versionadded:: 1.3
"""
if when.tzinfo is None:
when = when.replace(tzinfo=datetime.timezone.utc)