Commit b98b37f1 authored by R David Murray's avatar R David Murray

Improve the grammar of a non-sentence.

parent 89a6e9a2
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment