Skip to content

Commit 2ab910e

Browse files
committed
Fix word order
1 parent 4620deb commit 2ab910e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Doc/library/asyncio-queue.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ Queue
110110
and will raise :exc:`QueueShutDown` in the formerly blocked thread.
111111

112112
If *immediate* is false (the default), the queue can be wound
113-
down normally with calls :meth:`~Queue.get` to extract tasks
113+
down normally with :meth:`~Queue.get` calls to extract tasks
114114
that have already been loaded.
115115

116116
And if :meth:`~Queue.task_done` is called for each remaining task, a

Doc/library/queue.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ until empty or terminated immediately (a hard shutdown).
243243
and will raise :exc:`ShutDown` in the formerly blocked thread.
244244

245245
If *immediate* is false (the default), the queue can be wound
246-
down normally with calls :meth:`~Queue.get` to extract tasks
246+
down normally with :meth:`~Queue.get` calls to extract tasks
247247
that have already been loaded.
248248

249249
And if :meth:`~Queue.task_done` is called for each remaining task, a

0 commit comments

Comments
 (0)