summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-06-12 06:26:54 (GMT)
committerGeorg Brandl <georg@python.org>2010-06-12 06:26:54 (GMT)
commitb20ada08bd140fb234c281c6397f86fab313577f (patch)
treec211d9bb70a7ca3057c491ec190646a24062d5ef /Doc/tutorial
parent936efc791a9d97e4d4a9db386dc419b7ab30dfab (diff)
downloadcpython-b20ada08bd140fb234c281c6397f86fab313577f.zip
cpython-b20ada08bd140fb234c281c6397f86fab313577f.tar.gz
cpython-b20ada08bd140fb234c281c6397f86fab313577f.tar.bz2
Fix punctuation.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/classes.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst
index 1488329..db52f5e 100644
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -537,7 +537,7 @@ Private Variables
=================
"Private" instance variables that cannot be accessed except from inside an
-object, don't exist in Python. However, there is a convention that is followed
+object don't exist in Python. However, there is a convention that is followed
by most Python code: a name prefixed with an underscore (e.g. ``_spam``) should
be treated as a non-public part of the API (whether it is a function, a method
or a data member). It should be considered an implementation detail and subject