Skip to content

Commit 7398853

Browse files
committed
fixed spelling mistake
1 parent 6044e3a commit 7398853

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
@@ -5031,7 +5031,7 @@ module ts {
50315031
error(node, Diagnostics.The_0_operator_is_not_allowed_for_boolean_types_Consider_using_1_instead, tokenToString(node.operator), tokenToString(suggestedOperator));
50325032
}
50335033
else {
5034-
// otherwise just check each operand seperately and report errors as normal
5034+
// otherwise just check each operand separately and report errors as normal
50355035
var leftOk = checkArithmeticOperandType(node.left, leftType, Diagnostics.The_left_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_or_an_enum_type);
50365036
var rightOk = checkArithmeticOperandType(node.right, rightType, Diagnostics.The_right_hand_side_of_an_arithmetic_operation_must_be_of_type_any_number_or_an_enum_type);
50375037
if (leftOk && rightOk) {

0 commit comments

Comments
 (0)