summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/classes.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/tutorial/classes.rst')
-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 4e2423f..5831f6c 100644
--- a/Doc/tutorial/classes.rst
+++ b/Doc/tutorial/classes.rst
@@ -261,7 +261,7 @@ the class's namespace when the class object was created. So, if the class
definition looked like this::
class MyClass:
- "A simple example class"
+ """A simple example class"""
i = 12345
def f(self):
return 'hello world'