Skip to content

Commit 3dbb6be

Browse files
authored
[NFC] Comment fix: "does specify state that" -> "does specify that" (#106338)
1 parent 190449a commit 3dbb6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang/lib/AST/ComputeDependence.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ ExprDependence clang::computeDependence(BinaryOperator *E) {
164164
ExprDependence clang::computeDependence(ConditionalOperator *E) {
165165
// The type of the conditional operator depends on the type of the conditional
166166
// to support the GCC vector conditional extension. Additionally,
167-
// [temp.dep.expr] does specify state that this should be dependent on ALL sub
167+
// [temp.dep.expr] does specify that this should be dependent on ALL sub
168168
// expressions.
169169
return E->getCond()->getDependence() | E->getLHS()->getDependence() |
170170
E->getRHS()->getDependence();

0 commit comments

Comments
 (0)