diff options
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 940e4c4..dd85746 100644 --- a/Doc/library/pprint.rst +++ b/Doc/library/pprint.rst @@ -50,7 +50,7 @@ The :mod:`pprint` module defines one class: >>> stuff.insert(0, stuff[:]) >>> pp = pprint.PrettyPrinter(indent=4) >>> pp.pprint(stuff) - [ [ 'spam', 'eggs', 'lumberjack', 'knights', 'ni'], + [ ['spam', 'eggs', 'lumberjack', 'knights', 'ni'], 'spam', 'eggs', 'lumberjack', |