diff options
Diffstat (limited to 'Doc/lib/libtextwrap.tex')
-rw-r--r-- | Doc/lib/libtextwrap.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libtextwrap.tex b/Doc/lib/libtextwrap.tex index fa0b1fc..778b570 100644 --- a/Doc/lib/libtextwrap.tex +++ b/Doc/lib/libtextwrap.tex @@ -59,11 +59,11 @@ For example: def test(): # end first line with \ to avoid the empty line! s = '''\ - Hey - there + hello + world ''' - print repr(s) # prints ' Hey\n there\n ' - print repr(dedent(s)) # prints 'Hey\nthere\n' + print repr(s) # prints ' hello\n world\n ' + print repr(dedent(s)) # prints 'hello\n world\n' \end{verbatim} \end{funcdesc} |