Issue #13513: IOBase docs incorrectly link to the readline module
diff --git a/Doc/library/io.rst b/Doc/library/io.rst
index 1da7e4c..85e8c5b 100644
--- a/Doc/library/io.rst
+++ b/Doc/library/io.rst
@@ -213,7 +213,7 @@
    :class:`IOBase` object can be iterated over yielding the lines in a stream.
    Lines are defined slightly differently depending on whether the stream is
    a binary stream (yielding bytes), or a text stream (yielding character
-   strings).  See :meth:`readline` below.
+   strings).  See :meth:`~IOBase.readline` below.
 
    IOBase is also a context manager and therefore supports the
    :keyword:`with` statement.  In this example, *file* is closed after the
diff --git a/Misc/NEWS b/Misc/NEWS
index 3f8e259..abb04e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1885,6 +1885,9 @@
 Documentation
 -------------
 
+- Issue #13513: Fix io.IOBase documentation to correctly link to the
+  io.IOBase.readline method instead of the readline module.
+
 - Issue #13237: Reorganise subprocess documentation to emphasise convenience
   functions and the most commonly needed arguments to Popen.