diff options
Diffstat (limited to 'test/unit/preprocess.moon')
-rw-r--r-- | test/unit/preprocess.moon | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/preprocess.moon b/test/unit/preprocess.moon index cf98ac3c8b..aa74b8ce24 100644 --- a/test/unit/preprocess.moon +++ b/test/unit/preprocess.moon @@ -38,7 +38,7 @@ parse_make_deps = (deps) -> -- remove redundant spaces deps = deps\gsub(" +", " ") - -- split acording to token (space in this case) + -- split according to token (space in this case) headers = {} for token in deps\gmatch("[^%s]+") -- headers[token] = true |