diff options
author | Jose <jose@zeroc.com> | 2021-01-12 10:30:18 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2021-01-12 10:30:18 +0100 |
commit | c0d5f547d32c65bcbdc5ac25ef8b1329f3bed813 (patch) | |
tree | fa70d5035d9250082fed5f6b205300ab6d4e954a | |
parent | Update 3.7 CHANGELOG (diff) | |
download | ice-c0d5f547d32c65bcbdc5ac25ef8b1329f3bed813.tar.bz2 ice-c0d5f547d32c65bcbdc5ac25ef8b1329f3bed813.tar.xz ice-c0d5f547d32c65bcbdc5ac25ef8b1329f3bed813.zip |
Fix typo
-rw-r--r-- | python/python/Ice/Py3/IceFuture.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/python/Ice/Py3/IceFuture.py b/python/python/Ice/Py3/IceFuture.py index f9178bf58ee..fe40414d9ff 100644 --- a/python/python/Ice/Py3/IceFuture.py +++ b/python/python/Ice/Py3/IceFuture.py @@ -42,7 +42,7 @@ def wrap_future(future, *, loop=None): asyncioFuture = loop.create_future() if future.done(): - # As long as no don callbacks are registered, completing the asyncio future should be thread safe + # As long as no done callbacks are registered, completing the asyncio future should be thread safe # even if the future is constructed with a loop which isn't the current thread's loop. forwardCompletion(future, asyncioFuture) else: |