]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] `functools.partial` docs: Use the more common spelling for "referenceable...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 3 Jan 2024 13:19:49 +0000 (14:19 +0100)
committerGitHub <noreply@github.com>
Wed, 3 Jan 2024 13:19:49 +0000 (13:19 +0000)
`functools.partial` docs: Use the more common spelling for "referenceable" (GH-113675)
(cherry picked from commit 4de468cce106221968d7ac08ddd94571b903c194)

Co-authored-by: Rodrigo Girão Serrão <5621605+rodrigogiraoserrao@users.noreply.github.com>
Doc/library/functools.rst

index 9dadbb69fc2f24dd404bda287c9e134adf514e37..11bd891f410276dd8acbc0a3565e510fadae44b2 100644 (file)
@@ -725,7 +725,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