commit | 3ce0dee9a3a5bce536ddab38bf233deaaded00e0 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sat Sep 13 17:18:11 2008 +0000 |
committer | Georg Brandl <georg@python.org> | Sat Sep 13 17:18:11 2008 +0000 |
tree | ab60a82f95343b2ea1a58a92291b65550eff9870 | |
parent | a9aff014a86d40924e9f44f62cec2632b53ede11 [diff] [blame] |
Incorporate some suggestions by Tait Stevens.
diff --git a/Doc/tutorial/classes.rst b/Doc/tutorial/classes.rst index bca9108..43f2c6d 100644 --- a/Doc/tutorial/classes.rst +++ b/Doc/tutorial/classes.rst
@@ -208,7 +208,7 @@ definition looked like this:: class MyClass: - "A simple example class" + """A simple example class""" i = 12345 def f(self): return 'hello world'