Skip to content

Commit 63abd1a

Browse files
authored
Merge pull request swiftlang#35250 from kkshinkai/main
Fix a misspelling
2 parents 4bc7a63 + d2bbdb8 commit 63abd1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Parse/ParseIfConfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ class ValidateIfConfigCondition :
102102
return nullptr;
103103
}
104104

105-
// Support '||' and '&&' operator. The procedence of '&&' is higher than '||'.
105+
// Support '||' and '&&' operator. The precedence of '&&' is higher than '||'.
106106
// Invalid operator and the next operand are diagnosed and removed from AST.
107107
Expr *foldSequence(Expr *LHS, ArrayRef<Expr*> &S, bool isRecurse = false) {
108108
assert(!S.empty() && ((S.size() & 1) == 0));

0 commit comments

Comments
 (0)