From: Yongzi Li <204532581+Yzi-Li@users.noreply.github.com> Date: Mon, 10 Nov 2025 14:55:15 +0000 (+0800) Subject: gh-141343: Fix swapped words in `sorted` doc (GH-141348) X-Git-Tag: v3.15.0a2~124 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59b793b0dd76d37229fe6d379cd5fe76023d15f1;p=thirdparty%2FPython%2Fcpython.git gh-141343: Fix swapped words in `sorted` doc (GH-141348) --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index 61799e303a16..e98793975556 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst @@ -1859,7 +1859,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`.