diff options
author | Xavier GUIHOT <x.guihot@gmail.com> | 2019-03-23 01:17:29 (GMT) |
---|---|---|
committer | Raymond Hettinger <rhettinger@users.noreply.github.com> | 2019-03-23 01:17:29 (GMT) |
commit | 7c822e50f04b551f74cde4ee163a3fe261b08f47 (patch) | |
tree | 5635246ecfc7b8813fa4617e048089fcf3cc60bc /Doc/library/pprint.rst | |
parent | c1419578a18d787393c7ccee149e7c1fff17a99e (diff) | |
download | cpython-7c822e50f04b551f74cde4ee163a3fe261b08f47.zip cpython-7c822e50f04b551f74cde4ee163a3fe261b08f47.tar.gz cpython-7c822e50f04b551f74cde4ee163a3fe261b08f47.tar.bz2 |
Fix typo in doc for pprint.pp (GH-12500)
Diffstat (limited to 'Doc/library/pprint.rst')
-rw-r--r-- | Doc/library/pprint.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/pprint.rst b/Doc/library/pprint.rst index 988f85b..9abf286 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -106,7 +106,7 @@ The :mod:`pprint` module also provides several shortcut functions: Prints the formatted representation of *object* followed by a newline. If *sort_dicts* is false (the default), dictionaries will be displayed with their keys in insertion order, otherwise the dict keys will be sorted. - *args* an *kwargs* will be passed to :func:`pprint` as formatting + *args* and *kwargs* will be passed to :func:`pprint` as formatting parameters. .. versionadded:: 3.8 |