diff options
author | Brett Cannon <bcannon@gmail.com> | 2008-02-03 02:34:14 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2008-02-03 02:34:14 (GMT) |
commit | 89dfbe35af6379a041f52bc97ce1ad5638257098 (patch) | |
tree | 6912da28e19f56e30ec86a733318b9970c4c4357 | |
parent | 861e39678f574496c6e730753f12cbd7f59b6541 (diff) | |
download | cpython-89dfbe35af6379a041f52bc97ce1ad5638257098.zip cpython-89dfbe35af6379a041f52bc97ce1ad5638257098.tar.gz cpython-89dfbe35af6379a041f52bc97ce1ad5638257098.tar.bz2 |
Remove extra tick marks and add a missing closing parenthesis.
-rw-r--r-- | Doc/library/queue.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index f6765a5..2ce871a 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -68,7 +68,7 @@ The :mod:`Queue` module defines the following classes and exceptions: Queue Objects ------------- -Queue objects (:class:``Queue``, :class:``LifoQueue``, or :class:``PriorityQueue`` +Queue objects (:class:`Queue`, :class:`LifoQueue`, or :class:`PriorityQueue`) provide the public methods described below. |