]> granicus.if.org Git - python/commitdiff
fix typo and join two paragraphs
authorFred Drake <fdrake@acm.org>
Thu, 11 Dec 2003 19:45:53 +0000 (19:45 +0000)
committerFred Drake <fdrake@acm.org>
Thu, 11 Dec 2003 19:45:53 +0000 (19:45 +0000)
Doc/ref/ref4.tex

index b993266dccc8647120cb16a5322a0ef60315ab29..dbd6a2f8e93b3db728bd9f094d792765c807e4b6 100644 (file)
@@ -80,8 +80,7 @@ If a name binding operation occurs anywhere within a code block, all
 uses of the name within the block are treated as references to the
 current block.  This can lead to errors when a name is used within a
 block before it is bound.
-
-The previous rule is a subtle.  Python lacks declarations and allows
+This rule is subtle.  Python lacks declarations and allows
 name binding operations to occur anywhere within a code block.  The
 local variables of a code block can be determined by scanning the
 entire text of the block for name binding operations.