summaryrefslogtreecommitdiffstats
path: root/Doc/ref
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2003-12-11 19:45:53 (GMT)
committerFred Drake <fdrake@acm.org>2003-12-11 19:45:53 (GMT)
commit1f84ed0d8a1f23efde85ec9b68557b87dbe5d3e3 (patch)
tree95d91ad8b633675d74ffee296db8ca3cc5c867e3 /Doc/ref
parentb167b04a2ed74dc746c5a584bc9ac1ebfe604442 (diff)
downloadcpython-1f84ed0d8a1f23efde85ec9b68557b87dbe5d3e3.zip
cpython-1f84ed0d8a1f23efde85ec9b68557b87dbe5d3e3.tar.gz
cpython-1f84ed0d8a1f23efde85ec9b68557b87dbe5d3e3.tar.bz2
fix typo and join two paragraphs
Diffstat (limited to 'Doc/ref')
-rw-r--r--Doc/ref/ref4.tex3
1 files changed, 1 insertions, 2 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex
index b993266..dbd6a2f 100644
--- a/Doc/ref/ref4.tex
+++ b/Doc/ref/ref4.tex
@@ -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.