Issue #18758: Fixed and improved cross-references.
diff --git a/Doc/faq/design.rst b/Doc/faq/design.rst
index 40babec..017c6d4 100644
--- a/Doc/faq/design.rst
+++ b/Doc/faq/design.rst
@@ -682,7 +682,8 @@
(ABCs). You can then use :func:`isinstance` and :func:`issubclass` to check
whether an instance or a class implements a particular ABC. The
:mod:`collections` module defines a set of useful ABCs such as
-:class:`Iterable`, :class:`Container`, and :class:`MutableMapping`.
+:class:`~collections.Iterable`, :class:`~collections.Container`, and
+:class:`~collections.MutableMapping`.
For Python, many of the advantages of interface specifications can be obtained
by an appropriate test discipline for components. There is also a tool,