From b20ada08bd140fb234c281c6397f86fab313577f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 12 Jun 2010 06:26:54 +0000 Subject: [PATCH] Fix punctuation. --- Doc/tutorial/classes.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index 1488329431..db52f5ea08 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 -- 2.40.0