]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Improve the grammar of a non-sentence.
authorR David Murray <rdmurray@bitdance.com>
Wed, 9 May 2012 01:28:24 +0000 (21:28 -0400)
committerR David Murray <rdmurray@bitdance.com>
Wed, 9 May 2012 01:28:24 +0000 (21:28 -0400)
Doc/library/queue.rst

index 26336ef5158f2a13f28c7d7b821742c8b78605a9..bc35dfe40e1e42e46ce6b3c54efe6718dda3b463 100644 (file)
@@ -15,8 +15,8 @@ module implements all the required locking semantics.  It depends on the
 availability of thread support in Python; see the :mod:`threading`
 module.
 
-Implements three types of queue whose only difference is the order that
-the entries are retrieved.  In a FIFO queue, the first tasks added are
+The module implements three types of queue, which differ only in the order in
+which the entries are retrieved.  In a FIFO queue, the first tasks added are
 the first retrieved. In a LIFO queue, the most recently added entry is
 the first retrieved (operating like a stack).  With a priority queue,
 the entries are kept sorted (using the :mod:`heapq` module) and the