From: Andrew M. Kuchling Date: Thu, 27 Sep 2001 04:18:36 +0000 (+0000) Subject: Fix comment typo X-Git-Tag: v2.2.1c1~1586 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=264e8186d551647d4583f592e44b2d7a64e61096;p=python Fix comment typo --- diff --git a/Lib/compiler/__init__.py b/Lib/compiler/__init__.py index 97d9c76dc0..1267b0c780 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