summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>2024-01-03 12:50:44 (GMT)
committerGitHub <noreply@github.com>2024-01-03 12:50:44 (GMT)
commit4de468cce106221968d7ac08ddd94571b903c194 (patch)
tree052296b7788b2fe5a2206f3715e7809cc80d9987
parentea978c645edd7bc29d811c61477dff766d7318b6 (diff)
downloadcpython-4de468cce106221968d7ac08ddd94571b903c194.zip
cpython-4de468cce106221968d7ac08ddd94571b903c194.tar.gz
cpython-4de468cce106221968d7ac08ddd94571b903c194.tar.bz2
`functools.partial` docs: Use the more common spelling for "referenceable" (#113675)
-rw-r--r--Doc/library/functools.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/functools.rst b/Doc/library/functools.rst
index 69ec1eb..6749a513 100644
--- a/Doc/library/functools.rst
+++ b/Doc/library/functools.rst
@@ -742,7 +742,7 @@ have three read-only attributes:
called.
:class:`partial` objects are like :class:`function` objects in that they are
-callable, weak referencable, and can have attributes. There are some important
+callable, weak referenceable, and can have attributes. There are some important
differences. For instance, the :attr:`~definition.__name__` and :attr:`__doc__` attributes
are not created automatically. Also, :class:`partial` objects defined in
classes behave like static methods and do not transform into bound methods