Skip to content

Commit c53612d

Browse files
committed
Add missing semicolon
1 parent 9cc9a99 commit c53612d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/tsc.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace ts {
4646
// First try the entire locale, then fall back to just language if that's all we have.
4747
// Either ways do not fail, and fallback to the English diagnostic strings.
4848
if (!trySetLanguageAndTerritory(language, territory, errors)) {
49-
trySetLanguageAndTerritory(language, undefined, errors)
49+
trySetLanguageAndTerritory(language, undefined, errors);
5050
}
5151

5252
return true;

0 commit comments

Comments
 (0)