diff options
author | Raymond Hettinger <python@rcn.com> | 2004-08-22 15:24:33 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-08-22 15:24:33 (GMT) |
commit | d3b0babf6628d0c97f08212357de89be471a758f (patch) | |
tree | d62dcd53efa1f440740bc7ff0c0a838533a3dfe2 /Doc | |
parent | 07a349c4eeda0a937367ea9a2eff9958c46b11e1 (diff) | |
download | cpython-d3b0babf6628d0c97f08212357de89be471a758f.zip cpython-d3b0babf6628d0c97f08212357de89be471a758f.tar.gz cpython-d3b0babf6628d0c97f08212357de89be471a758f.tar.bz2 |
SF bug #1013760: Error in Chapter 4 of Tutorial
Fit a nit.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 970c8ad..1fb661d 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -1339,7 +1339,7 @@ mechanism: \begin{verbatim} >>> fib -<function object at 10042ed0> +<function fib at 10042ed0> >>> f = fib >>> f(100) 1 1 2 3 5 8 13 21 34 55 89 |