]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-115986: Fix inaccuracies in pprint docs (GH-116104) (#116383)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 5 Mar 2024 21:20:59 +0000 (22:20 +0100)
committerGitHub <noreply@github.com>
Tue, 5 Mar 2024 21:20:59 +0000 (21:20 +0000)
Amend wording after gh-116019 was merged.
(cherry picked from commit e205c5cd8f1a49d0ef126123312ee8a40d1416b6)

Co-authored-by: Kerim Kabirov <39376984+Privat33r-dev@users.noreply.github.com>
Doc/library/pprint.rst

index e7f0bddc9606f77e5be8495357056fd20a23b9aa..b4c16222cb6f2ac45c59e9a856765cdbba6a1bc1 100644 (file)
@@ -59,7 +59,7 @@ Functions
    The configuration parameters *stream*, *indent*, *width*, *depth*,
    *compact*, *sort_dicts* and *underscore_numbers* are passed to the
    :class:`PrettyPrinter` constructor and their meanings are as
-   described in its documentation above.
+   described in its documentation below.
 
       >>> import pprint
       >>> stuff = ['spam', 'eggs', 'lumberjack', 'knights', 'ni']
@@ -78,7 +78,7 @@ Functions
    Return the formatted representation of *object* as a string.  *indent*,
    *width*, *depth*, *compact*, *sort_dicts* and *underscore_numbers* are
    passed to the :class:`PrettyPrinter` constructor as formatting parameters
-   and their meanings are as described in its documentation above.
+   and their meanings are as described in its documentation below.
 
 
 .. function:: isreadable(object)