aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorFelix Yan <[email protected]>2018-06-09 02:56:14 +0800
committerGitHub <[email protected]>2018-06-09 02:56:14 +0800
commit4107fc0956e6d51692e888b35c126ea8f87433dd (patch)
treee64eed08fc696bb017ab8734fdc4fa326d413fd5 /configure.py
parent34f3e5537f6e9820314bd8fbd1b20d4adf7e9a0b (diff)
Fix some typos in configure.py
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.py b/configure.py
index d2286f081..ab50793ec 100755
--- a/configure.py
+++ b/configure.py
@@ -683,7 +683,7 @@ def lex_me_harder(infofile, allowed_groups, allowed_maps, name_val_pairs):
for (key, val) in name_val_pairs.items():
out.__dict__[key] = val
- def lexed_tokens(): # Convert to an interator
+ def lexed_tokens(): # Convert to an iterator
while True:
token = lexer.get_token()
if token != lexer.eof:
@@ -2164,7 +2164,7 @@ class ModulesChooser(object):
successfully_loaded = set()
for modname in self._to_load:
- # This will try to recusively load all dependencies of modname
+ # This will try to recursively load all dependencies of modname
ok, modules = self.resolve_dependencies(available_modules, dependency_table, modname)
if ok:
successfully_loaded.add(modname)