From: Barry Warsaw Date: Mon, 15 Jan 2001 20:51:40 +0000 (+0000) Subject: effbot caught a typo! X-Git-Tag: v2.1a1~252 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=83ad5015cbba461cfe1f8f7185b350dc5e7a949d;p=thirdparty%2FPython%2Fcpython.git effbot caught a typo! --- diff --git a/Doc/lib/libstdtypes.tex b/Doc/lib/libstdtypes.tex index 01c4c817cb33..6b3683af7193 100644 --- a/Doc/lib/libstdtypes.tex +++ b/Doc/lib/libstdtypes.tex @@ -954,11 +954,11 @@ class C: c = C() d = C() -c.meth.whoami = 'my name is c' -d.meth.whoami = 'my name is d' +c.method.whoami = 'my name is c' +d.method.whoami = 'my name is d' \end{verbatim} -If bound method attribute setting was allowed, \code{c.meth.whoami} +If bound method attribute setting was allowed, \code{c.method.whoami} would return ``my name is d''. See the \citetitle[../ref/ref.html]{Python Reference Manual} for more