[clang] 3dbb6be - [NFC] Comment fix: "does specify state that" -> "does specify that" (#106338)
via cfe-commits
cfe-commits at lists.llvm.org
Wed Aug 28 00:05:47 PDT 2024
Author: Michael Park
Date: 2024-08-28T09:05:43+02:00
New Revision: 3dbb6befa837c5daa07de1e0daa45e5943ee9520
URL: https://github.com/llvm/llvm-project/commit/3dbb6befa837c5daa07de1e0daa45e5943ee9520
DIFF: https://github.com/llvm/llvm-project/commit/3dbb6befa837c5daa07de1e0daa45e5943ee9520.diff
LOG: [NFC] Comment fix: "does specify state that" -> "does specify that" (#106338)
Added:
Modified:
clang/lib/AST/ComputeDependence.cpp
Removed:
################################################################################
diff --git a/clang/lib/AST/ComputeDependence.cpp b/clang/lib/AST/ComputeDependence.cpp
index 62ca15ea398f5c..6ef49790481aca 100644
--- a/clang/lib/AST/ComputeDependence.cpp
+++ b/clang/lib/AST/ComputeDependence.cpp
@@ -164,7 +164,7 @@ ExprDependence clang::computeDependence(BinaryOperator *E) {
ExprDependence clang::computeDependence(ConditionalOperator *E) {
// The type of the conditional operator depends on the type of the conditional
// to support the GCC vector conditional extension. Additionally,
- // [temp.dep.expr] does specify state that this should be dependent on ALL sub
+ // [temp.dep.expr] does specify that this should be dependent on ALL sub
// expressions.
return E->getCond()->getDependence() | E->getLHS()->getDependence() |
E->getRHS()->getDependence();
More information about the cfe-commits
mailing list