mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-16 09:54:02 +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]))
|
if (isDirectory(argv[i]))
|
||||||
{
|
{
|
||||||
traverseDirectory(argv[i], [&](const std::string& name) {
|
traverseDirectory(argv[i], [&](const std::string& name) {
|
||||||
if (name.length() > 4 && name.rfind(".lua") == name.length() - 4)
|
if (name.length() > 4 && name.rfind(".lua") == name.length() - 4)
|
||||||
failed += !analyzeFile(frontend, name.c_str(), format, annotate);
|
failed += !analyzeFile(frontend, name.c_str(), format, annotate);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue