From: Fred Drake Date: Mon, 21 Jan 2002 16:10:06 +0000 (+0000) Subject: Fix typos reported by François Pinard. X-Git-Tag: v2.1.3~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ddc9bb95959101f2c26a903031b0ec59843723c2;p=thirdparty%2FPython%2Fcpython.git Fix typos reported by François Pinard. --- diff --git a/Doc/ref/refa1.tex b/Doc/ref/refa1.tex index 9a225132a855..0e18753dff45 100644 --- a/Doc/ref/refa1.tex +++ b/Doc/ref/refa1.tex @@ -160,9 +160,9 @@ operations. Each occurrence of a name in the program text refers to the binding of that name established in the innermost function block containing the use. -A \dfn{block} is a pice of Python program text that can is executed as +A \dfn{block} is a piece of Python program text that can is executed as a unit. The following are blocks: a module, a function body, and a -class defintion. +class definition. A \dfn{scope} defines the visibility of a name within a block. If a local variable is defined in a block, it's scope includes that block.