Skip to content

Commit

Permalink
Add missing space to match coding guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Nov 30, 2021
1 parent aeee16c commit cce614e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler/checker.ts
Expand Up @@ -2544,7 +2544,7 @@ namespace ts {
else if (n === parent) {
return true;
}
else if(isFunctionLike(n)) {
else if (isFunctionLike(n)) {
return getImmediatelyInvokedFunctionExpression(n) ? false : "quit";
}
else {
Expand Down

0 comments on commit cce614e

Please sign in to comment.