diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-09-27 04:18:36 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-09-27 04:18:36 (GMT) |
commit | 264e8186d551647d4583f592e44b2d7a64e61096 (patch) | |
tree | cae4f65f966bdc4929470a589add3b8b42e5e94b | |
parent | 3fc291a1d751fd5242a12a3634a4d30f1ee5688b (diff) | |
download | cpython-264e8186d551647d4583f592e44b2d7a64e61096.zip cpython-264e8186d551647d4583f592e44b2d7a64e61096.tar.gz cpython-264e8186d551647d4583f592e44b2d7a64e61096.tar.bz2 |
Fix comment typo
-rw-r--r-- | Lib/compiler/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/compiler/__init__.py b/Lib/compiler/__init__.py index 97d9c76..1267b0c 100644 --- a/Lib/compiler/__init__.py +++ b/Lib/compiler/__init__.py @@ -18,7 +18,7 @@ compile(source, filename, mode, flags=None, dont_inherit=None) Returns a code object. A replacement for the builtin compile() function. compileFile(filename) - Generates a .pyc file by compilining filename. + Generates a .pyc file by compiling filename. """ from transformer import parse, parseFile |