[flang-commits] [flang] [flang] Fix some typos in comments, NFC (PR #192445)
Krzysztof Parzyszek via flang-commits
flang-commits at lists.llvm.org
Thu Apr 16 06:16:55 PDT 2026
https://github.com/kparzysz created https://github.com/llvm/llvm-project/pull/192445
None
>From 5af014815da030e6b9279f4414d6239f7f4ee048 Mon Sep 17 00:00:00 2001
From: Krzysztof Parzyszek <Krzysztof.Parzyszek at amd.com>
Date: Thu, 16 Apr 2026 08:15:30 -0500
Subject: [PATCH] [flang] Fix some typos in comments, NFC
---
flang/include/flang/Evaluate/match.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
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