Skip to content

Commit 04d6e91

Browse files
committed
Fix typos
1 parent 5e49b57 commit 04d6e91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14529,7 +14529,7 @@ namespace ts {
1452914529
function areDeclarationFlagsIdentical(left: Declaration, right: Declaration) {
1453014530
if ((left.kind === SyntaxKind.Parameter && right.kind === SyntaxKind.VariableDeclaration) ||
1453114531
(left.kind === SyntaxKind.VariableDeclaration && right.kind === SyntaxKind.Parameter)) {
14532-
// Diffrences in optionality between paramters and variables are allowed.
14532+
// Differences in optionality between parameters and variables are allowed.
1453314533
return true;
1453414534
}
1453514535

0 commit comments

Comments
 (0)