diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-05-09 01:29:06 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-05-09 01:29:06 (GMT) |
commit | 7ca8d1f748bbac45d75035b8fb11984c1a835b0c (patch) | |
tree | 1637a8a06879e6fb22e8f52af8bcc135a6078a1f | |
parent | f59c28c93007d3d7e7340703aa5d2360d285abed (diff) | |
parent | b98b37f10139ab92b265c11455eaaa353f04325f (diff) | |
download | cpython-7ca8d1f748bbac45d75035b8fb11984c1a835b0c.zip cpython-7ca8d1f748bbac45d75035b8fb11984c1a835b0c.tar.gz cpython-7ca8d1f748bbac45d75035b8fb11984c1a835b0c.tar.bz2 |
Merge: Improve the grammar of a non-sentence.
-rw-r--r-- | Doc/library/queue.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 26336ef..bc35dfe 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -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 |