summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Smith <eric@trueblade.com>2011-02-01 21:31:22 (GMT)
committerEric Smith <eric@trueblade.com>2011-02-01 21:31:22 (GMT)
commit7b5011b4a3a8ad8a8c816b9472afd60628815317 (patch)
treec74af7fc2ed71a2e4582df2f0d74b7e8480be7a3
parent0ea622a5c88b75db15d818e91ec2f57651473a66 (diff)
downloadcpython-7b5011b4a3a8ad8a8c816b9472afd60628815317.zip
cpython-7b5011b4a3a8ad8a8c816b9472afd60628815317.tar.gz
cpython-7b5011b4a3a8ad8a8c816b9472afd60628815317.tar.bz2
Wording fix.
-rw-r--r--Doc/library/concurrent.futures.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/concurrent.futures.rst b/Doc/library/concurrent.futures.rst
index 0cb170b..e5d13f3 100644
--- a/Doc/library/concurrent.futures.rst
+++ b/Doc/library/concurrent.futures.rst
@@ -221,7 +221,7 @@ The :class:`Future` class encapsulates the asynchronous execution of a callable.
.. method:: cancel()
Attempt to cancel the call. If the call is currently being executed and
- cannot be cancelled and the method will return ``False``, otherwise the
+ cannot be cancelled then the method will return ``False``, otherwise the
call will be cancelled and the method will return ``True``.
.. method:: cancelled()