From 24f80d94b425e3f7795c51a04fb2c124341d4fed Mon Sep 17 00:00:00 2001 From: =?utf8?q?Markus=20B=C3=B6ck?= Date: Wed, 3 Nov 2021 08:54:47 +0100 Subject: [PATCH] [mlir] Fix typos in comments in DebugAction.h --- mlir/include/mlir/Support/DebugAction.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mlir/include/mlir/Support/DebugAction.h b/mlir/include/mlir/Support/DebugAction.h index 8a2f88a..352370c 100644 --- a/mlir/include/mlir/Support/DebugAction.h +++ b/mlir/include/mlir/Support/DebugAction.h @@ -6,8 +6,8 @@ // //===----------------------------------------------------------------------===// // -// This file contains defintions for the debug action framework. This framework -// allows for external entites to control certain actions taken by the compiler +// This file contains definitions for the debug action framework. This framework +// allows for external entities to control certain actions taken by the compiler // by registering handler functions. A debug action handler provides the // internal implementation for the various queries on a debug action, such as // whether it should execute or not. @@ -64,7 +64,7 @@ public: /// This class represents a generic action handler. A generic handler allows /// for handling any action type. Handlers of this type are useful for - /// implementing general functionality that doesn’t necessarily need to + /// implementing general functionality that doesn't necessarily need to /// interpret the exact action parameters, or can rely on an external /// interpreter (such as the user). Given that these handlers are generic, /// they take a set of opaque parameters that try to map the context of the @@ -175,7 +175,7 @@ private: /// A debug action is a specific action that is to be taken by the compiler, /// that can be toggled and controlled by an external user. There are no -/// constraints on the granulity of an action, it could be as simple as +/// constraints on the granularity of an action, it could be as simple as /// "perform this fold" and as complex as "run this pass pipeline". Via template /// parameters `ParameterTs`, a user may provide the set of argument types that /// are provided when handling a query on this action. Derived classes are -- 2.7.4