[Mlir-commits] [mlir] 24f80d9 - [mlir] Fix typos in comments in DebugAction.h

Markus Böck llvmlistbot at llvm.org
Wed Nov 3 00:55:12 PDT 2021


Author: Markus Böck
Date: 2021-11-03T08:54:47+01:00
New Revision: 24f80d94b425e3f7795c51a04fb2c124341d4fed

URL: https://github.com/llvm/llvm-project/commit/24f80d94b425e3f7795c51a04fb2c124341d4fed
DIFF: https://github.com/llvm/llvm-project/commit/24f80d94b425e3f7795c51a04fb2c124341d4fed.diff

LOG: [mlir] Fix typos in comments in DebugAction.h

Added: 
    

Modified: 
    mlir/include/mlir/Support/DebugAction.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Support/DebugAction.h b/mlir/include/mlir/Support/DebugAction.h
index 8a2f88a1f63c1..352370cf48cef 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 @@ class DebugActionManager {
 
   /// 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 @@ class DebugActionManager {
 
 /// 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


        


More information about the Mlir-commits mailing list