commit | 5ed262b7de5661dd71fad5e4e0f417a56acfc6eb | [log] [tgz] |
---|---|---|
author | Armin Rigo <arigo@tunes.org> | Tue Dec 06 18:32:37 2005 +0000 |
committer | Armin Rigo <arigo@tunes.org> | Tue Dec 06 18:32:37 2005 +0000 |
tree | 5a3fd62a977dd0a9ca21f99a9b5c6e063c85d2e5 | |
parent | de5f05f3b1ce9f899c65d17f1097270ca66c200a [diff] [blame] |
Typo in a code example.
diff --git a/Doc/lib/libfunctional.tex b/Doc/lib/libfunctional.tex index 367eeef..9218454 100644 --- a/Doc/lib/libfunctional.tex +++ b/Doc/lib/libfunctional.tex
@@ -44,7 +44,7 @@ two: \begin{verbatim} >>> basetwo = partial(int, base=2) - >>> basetwo.__doc__('Convert base 2 string to an int.') + >>> basetwo.__doc__ = 'Convert base 2 string to an int.' >>> basetwo('10010') 18 \end{verbatim}