From 7618754d53d0afb9f8a0a868d1a6fd6a49b70bba Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 10 Nov 2025 16:01:30 +0100 Subject: [PATCH] [3.14] gh-141343: Fix swapped words in `sorted` doc (GH-141357) (cherry picked from commit 59b793b0dd76d37229fe6d379cd5fe76023d15f1) Co-authored-by: Yongzi Li <204532581+Yzi-Li@users.noreply.github.com> --- Doc/library/functions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index d25a6efd003c..c66486d3908a 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1887,7 +1887,7 @@ are always available. They are listed here in alphabetical order. the same data with other ordering tools such as :func:`max` that rely on a different underlying method. Implementing all six comparisons also helps avoid confusion for mixed type comparisons which can call - reflected the :meth:`~object.__gt__` method. + the reflected :meth:`~object.__gt__` method. For sorting examples and a brief sorting tutorial, see :ref:`sortinghowto`. -- 2.47.3