diff options
author | Fred Drake <fdrake@acm.org> | 2002-06-26 21:52:26 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-06-26 21:52:26 (GMT) |
commit | 292724d9895e21d09ce7acbe4e25938ebf810fa7 (patch) | |
tree | ce186924e6a8ae2ab643adacff08496b4a3fe79a /Doc/ref | |
parent | 33fd5f7e02fc22e60537c5dfef7a8cbe5899eee3 (diff) | |
download | cpython-292724d9895e21d09ce7acbe4e25938ebf810fa7.zip cpython-292724d9895e21d09ce7acbe4e25938ebf810fa7.tar.gz cpython-292724d9895e21d09ce7acbe4e25938ebf810fa7.tar.bz2 |
Fix various typos reported to python-docs.
Diffstat (limited to 'Doc/ref')
-rw-r--r-- | Doc/ref/ref4.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index f16dc8e..6e893f1 100644 --- a/Doc/ref/ref4.tex +++ b/Doc/ref/ref4.tex @@ -32,7 +32,7 @@ and how execution continues after the code block's execution has completed. A \dfn{scope}\index{scope} defines the visibility of a name within a -block. If a local variable is defined in a block, it's scope includes +block. If a local variable is defined in a block, its scope includes that block. If the definition occurs in a function block, the scope extends to any blocks contained within the defining one, unless a contained block introduces a different binding for the name. The |