[flang-commits] [flang] 0162dbc - [flang] Fix some typos in comments, NFC (#192445)

via flang-commits flang-commits at lists.llvm.org
Thu Apr 16 06:35:34 PDT 2026


Author: Krzysztof Parzyszek
Date: 2026-04-16T08:35:29-05:00
New Revision: 0162dbc91d5786dd4195555695759f7620f67f58

URL: https://github.com/llvm/llvm-project/commit/0162dbc91d5786dd4195555695759f7620f67f58
DIFF: https://github.com/llvm/llvm-project/commit/0162dbc91d5786dd4195555695759f7620f67f58.diff

LOG: [flang] Fix some typos in comments, NFC (#192445)

Added: 
    

Modified: 
    flang/include/flang/Evaluate/match.h

Removed: 
    


################################################################################
diff  --git a/flang/include/flang/Evaluate/match.h b/flang/include/flang/Evaluate/match.h
index 32a4a7409fba7..dfbfd1b4b64e3 100644
--- a/flang/include/flang/Evaluate/match.h
+++ b/flang/include/flang/Evaluate/match.h
@@ -140,11 +140,11 @@ template <typename... Patterns> struct AnyOfPattern {
 };
 
 /// Matches any input of type Expr<T>
-/// The indent if this pattern is to be a leaf in multi-operand patterns.
+/// The intent of this pattern is to be a leaf in multi-operand patterns.
 template <typename T> //
 struct ExprPattern : public TypePattern<evaluate::Expr<T>> {};
 
-/// Matches evaluate::Expr<T> that contains evaluate::Opreration<OpType>.
+/// Matches evaluate::Expr<T> that contains evaluate::Operation<OpType>.
 template <typename OpType, typename... Ops>
 struct OperationPattern : public TypePattern<OpType> {
 private:


        


More information about the flang-commits mailing list