Issue #18757: Improved cross-references in the concurrent package.
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index 179c4c6..b525705 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -60,13 +60,15 @@
 
 .. exception:: Empty
 
-   Exception raised when non-blocking :meth:`get` (or :meth:`get_nowait`) is called
+   Exception raised when non-blocking :meth:`~Queue.get` (or
+   :meth:`~Queue.get_nowait`) is called
    on a :class:`Queue` object which is empty.
 
 
 .. exception:: Full
 
-   Exception raised when non-blocking :meth:`put` (or :meth:`put_nowait`) is called
+   Exception raised when non-blocking :meth:`~Queue.put` (or
+   :meth:`~Queue.put_nowait`) is called
    on a :class:`Queue` object which is full.
 
 .. seealso::