From: Fred Drake Date: Wed, 26 Jun 2002 21:52:26 +0000 (+0000) Subject: Fix various typos reported to python-docs. X-Git-Tag: v2.3c1~5194 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=292724d9895e21d09ce7acbe4e25938ebf810fa7;p=thirdparty%2FPython%2Fcpython.git Fix various typos reported to python-docs. --- diff --git a/Doc/ref/ref4.tex b/Doc/ref/ref4.tex index f16dc8ec0f71..6e893f19e474 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