diff options
author | Fred Drake <fdrake@acm.org> | 2002-01-21 16:09:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-01-21 16:09:42 (GMT) |
commit | b887219cc02836c67c57a0cdd2cc67d9c760bb15 (patch) | |
tree | e59ac8d75d5d155b5d96e7e7cb0258b406a9f404 /Doc | |
parent | f160f1bb5535e3d77f0b53f9638c224584f60cda (diff) | |
download | cpython-b887219cc02836c67c57a0cdd2cc67d9c760bb15.zip cpython-b887219cc02836c67c57a0cdd2cc67d9c760bb15.tar.gz cpython-b887219cc02836c67c57a0cdd2cc67d9c760bb15.tar.bz2 |
Fix typo reported by François Pinard.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/ref/refa1.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/ref/refa1.tex b/Doc/ref/refa1.tex index 1074cfd..4cd10d5 100644 --- a/Doc/ref/refa1.tex +++ b/Doc/ref/refa1.tex @@ -174,7 +174,7 @@ containing the use. A \dfn{block} is a piece of Python program text that 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. |