diff options
author | Raymond Hettinger <python@rcn.com> | 2004-03-25 08:51:36 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-03-25 08:51:36 (GMT) |
commit | 5232f50b19b727a8a6aa445919bffe7a6bbb2e5c (patch) | |
tree | aaa8fa37c30792e11f4c78210cc2a03a8809bf11 /Doc/api | |
parent | 91a968af7640348d92011e305127d5968958aff4 (diff) | |
download | cpython-5232f50b19b727a8a6aa445919bffe7a6bbb2e5c.zip cpython-5232f50b19b727a8a6aa445919bffe7a6bbb2e5c.tar.gz cpython-5232f50b19b727a8a6aa445919bffe7a6bbb2e5c.tar.bz2 |
SF bug: #921927: Fixed a typo/thinko spelling "parameter" as "paramter"
Diffstat (limited to 'Doc/api')
-rw-r--r-- | Doc/api/concrete.tex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/api/concrete.tex b/Doc/api/concrete.tex index 43180cc..e602528 100644 --- a/Doc/api/concrete.tex +++ b/Doc/api/concrete.tex @@ -2462,7 +2462,7 @@ acts as a proxy for the original object as much as it can. object; an existing reference object may be returned. The second parameter, \var{callback}, can be a callable object that receives notification when \var{ob} is garbage collected; it should accept a - single paramter, which will be the weak reference object itself. + single parameter, which will be the weak reference object itself. \var{callback} may also be \code{None} or \NULL. If \var{ob} is not a weakly-referencable object, or if \var{callback} is not callable, \code{None}, or \NULL, this will return \NULL{} and @@ -2477,7 +2477,7 @@ acts as a proxy for the original object as much as it can. a new object; an existing proxy object may be returned. The second parameter, \var{callback}, can be a callable object that receives notification when \var{ob} is garbage collected; it should accept a - single paramter, which will be the weak reference object itself. + single parameter, which will be the weak reference object itself. \var{callback} may also be \code{None} or \NULL. If \var{ob} is not a weakly-referencable object, or if \var{callback} is not callable, \code{None}, or \NULL, this will return \NULL{} and raise |