Skip to content

Commit 47aebb6

Browse files
authored
fix typo
1 parent a92bcdb commit 47aebb6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Doc/library/asyncio-queue.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Queue
2828
A first in, first out (FIFO) queue.
2929

3030
If *maxsize* is less than or equal to zero, the queue size is
31-
infinite. If it is an integer greater than ``0``, then
31+
infinite. If it is an integer greater than ``0``, then
3232
``await put()`` blocks when the queue reaches *maxsize*
3333
until an item is removed by :meth:`get`.
3434

@@ -54,8 +54,8 @@ Queue
5454

5555
Return ``True`` if there are :attr:`maxsize` items in the queue.
5656

57-
If the queue was initialized with ``maxsize=0`` (the default),
58-
or a negative :attr:`maxsize:, then :meth:`full` never returns
57+
If the queue was initialized with ``maxsize=0`` (the default)
58+
or a negative ``maxsize``, then :meth:`full` never returns
5959
``True``.
6060

6161
.. method:: get()

0 commit comments

Comments
 (0)