Skip to content
Snippets Groups Projects
Unverified Commit b11243e8 authored by Yiannis Hadjicharalambous's avatar Yiannis Hadjicharalambous Committed by GitHub
Browse files

concurrent.futures: Fix typo in docstring (#92121)

parent e6040604
No related branches found
No related tags found
No related merge requests found
......@@ -379,7 +379,7 @@ def running(self):
return self._state == RUNNING
def done(self):
"""Return True of the future was cancelled or finished executing."""
"""Return True if the future was cancelled or finished executing."""
with self._condition:
return self._state in [CANCELLED, CANCELLED_AND_NOTIFIED, FINISHED]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment