Issue #19207: Improved cross-references in the os, os.path, and posix modules
documentation.
diff --git a/Doc/library/os.path.rst b/Doc/library/os.path.rst
index e9b9813..0deb0fb 100644
--- a/Doc/library/os.path.rst
+++ b/Doc/library/os.path.rst
@@ -267,9 +267,9 @@
.. function:: samestat(stat1, stat2)
Return ``True`` if the stat tuples *stat1* and *stat2* refer to the same file.
- These structures may have been returned by :func:`fstat`, :func:`lstat`, or
- :func:`stat`. This function implements the underlying comparison used by
- :func:`samefile` and :func:`sameopenfile`.
+ These structures may have been returned by :func:`os.fstat`,
+ :func:`os.lstat`, or :func:`os.stat`. This function implements the
+ underlying comparison used by :func:`samefile` and :func:`sameopenfile`.
Availability: Unix.