mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-04 10:50:54 +01:00
Fix whitespace
This commit is contained in:
parent
66462d841d
commit
9e21b351fa
1 changed files with 3 additions and 3 deletions
|
@ -241,9 +241,9 @@ int main(int argc, char** argv)
|
|||
if (isDirectory(argv[i]))
|
||||
{
|
||||
traverseDirectory(argv[i], [&](const std::string& name) {
|
||||
if (name.length() > 4 && name.rfind(".lua") == name.length() - 4)
|
||||
failed += !analyzeFile(frontend, name.c_str(), format, annotate);
|
||||
});
|
||||
if (name.length() > 4 && name.rfind(".lua") == name.length() - 4)
|
||||
failed += !analyzeFile(frontend, name.c_str(), format, annotate);
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue