]> granicus.if.org Git - python/commitdiff
rewrap
authorBenjamin Peterson <benjamin@python.org>
Sat, 28 Jun 2008 23:06:49 +0000 (23:06 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 28 Jun 2008 23:06:49 +0000 (23:06 +0000)
Doc/reference/compound_stmts.rst

index b983a98b579be0e41af696762994e5e5ff2b0a16..fc49a480b95e7a5e0b588822272b7bdb80b85cde 100644 (file)
@@ -46,7 +46,7 @@ Summarizing:
    compound_stmt: `if_stmt`
                 : | `while_stmt`
                 : | `for_stmt`
-                : | `try_stmt`
+                : | `try_stmt
                 : | `with_stmt`
                 : | `funcdef`
                 : | `classdef`
@@ -538,10 +538,10 @@ mutable values there can lead to unexpected results.  For :term:`new-style
 class`\es, descriptors can be used to create instance variables with different
 implementation details.
 
-Class definitions, like function definitions, may be wrapped by one or
-more :term:`decorator` expressions.  The evaluation rules for the
-decorator expressions are the same as for functions.  The result must
-be a class object, which is then bound to the class name.
+Class definitions, like function definitions, may be wrapped by one or more
+:term:`decorator` expressions.  The evaluation rules for the decorator
+expressions are the same as for functions.  The result must be a class object,
+which is then bound to the class name.
 
 .. rubric:: Footnotes