diff options
author | R. David Murray <rdmurray@bitdance.com> | 2011-02-11 22:37:16 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2011-02-11 22:37:16 (GMT) |
commit | 8b24aac9363bfe44081415f6cff3bc65918ad321 (patch) | |
tree | 2d006cfb5205e2edb56e14b1cd0b5831c8d707bc | |
parent | cc7e23ac15a895770c93fde6145da61570f34e68 (diff) | |
download | cpython-8b24aac9363bfe44081415f6cff3bc65918ad321.zip cpython-8b24aac9363bfe44081415f6cff3bc65918ad321.tar.gz cpython-8b24aac9363bfe44081415f6cff3bc65918ad321.tar.bz2 |
Fix argument name typo in compileall docs.
-rw-r--r-- | Doc/library/compileall.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/compileall.rst b/Doc/library/compileall.rst index d515d4d..55dd958 100644 --- a/Doc/library/compileall.rst +++ b/Doc/library/compileall.rst @@ -119,7 +119,7 @@ Public functions cases where the source file does not exist at the time the byte-code file is executed. - If *ra* is given, its search method is passed the full path name to the + If *rx* is given, its search method is passed the full path name to the file being compiled, and if it returns a true value, the file is not compiled and ``True`` is returned. |