diff options
author | Raymond Hettinger <python@rcn.com> | 2005-01-01 00:28:46 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-01-01 00:28:46 (GMT) |
commit | 68804315e0f2fe567e62c7023bc87ee358a480e7 (patch) | |
tree | b3bd8d536221d63b6a7033fa0fcb10071f564001 /Doc/ref | |
parent | f871d833dd2a99d93ebdc4aa4cc07bd4afe9be61 (diff) | |
download | cpython-68804315e0f2fe567e62c7023bc87ee358a480e7.zip cpython-68804315e0f2fe567e62c7023bc87ee358a480e7.tar.gz cpython-68804315e0f2fe567e62c7023bc87ee358a480e7.tar.bz2 |
SF Patch #1093896: miscellaneous doc typos
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref3.tex | 2 | ||||
-rw-r--r-- | Doc/ref/ref5.tex | 2 | ||||
-rw-r--r-- | Doc/ref/ref6.tex | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex index 973275f..f339676 100644 --- a/Doc/ref/ref3.tex +++ b/Doc/ref/ref3.tex @@ -1328,7 +1328,7 @@ new-style classes themselves. \begin{methoddesc}[object]{__get__}{self, instance, owner} Called to get the attribute of the owner class (class attribute access) -or of an instance of that class (instance attribute acces). +or of an instance of that class (instance attribute access). \var{owner} is always the owner class, while \var{instance} is the instance that the attribute was accessed through, or \code{None} when the attribute is accessed through the \var{owner}. This method should diff --git a/Doc/ref/ref5.tex b/Doc/ref/ref5.tex index 091c91c..746615e 100644 --- a/Doc/ref/ref5.tex +++ b/Doc/ref/ref5.tex @@ -262,7 +262,7 @@ entries of the dictionary: each key object is used as a key into the dictionary to store the corresponding datum. Restrictions on the types of the key values are listed earlier in -section \ref{types}. (To summarize,the key type should be hashable, +section \ref{types}. (To summarize, the key type should be hashable, which excludes all mutable objects.) Clashes between duplicate keys are not detected; the last datum (textually rightmost in the display) stored for a given key value prevails. diff --git a/Doc/ref/ref6.tex b/Doc/ref/ref6.tex index 8a2a665..8eee5b8 100644 --- a/Doc/ref/ref6.tex +++ b/Doc/ref/ref6.tex @@ -497,7 +497,7 @@ get executed. \begin{notice} In Python 2.2, the \keyword{yield} statement is only allowed when the \code{generators} feature has been enabled. It will always -be enabled in Python 2.3. This \code{__future__} import statment can +be enabled in Python 2.3. This \code{__future__} import statement can be used to enable the feature: \begin{verbatim} |