[Mlir-commits] [mlir] 9691806 - [mlir] Fix typos in Dialect.h. NFC.

Alex Zinenko llvmlistbot at llvm.org
Wed Sep 23 06:38:28 PDT 2020


Author: Alex Zinenko
Date: 2020-09-23T15:37:57+02:00
New Revision: 9691806840606d48139b13516e9576902ba98923

URL: https://github.com/llvm/llvm-project/commit/9691806840606d48139b13516e9576902ba98923
DIFF: https://github.com/llvm/llvm-project/commit/9691806840606d48139b13516e9576902ba98923.diff

LOG: [mlir] Fix typos in Dialect.h. NFC.

Added: 
    

Modified: 
    mlir/include/mlir/IR/Dialect.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/IR/Dialect.h b/mlir/include/mlir/IR/Dialect.h
index 36571b9cbde9..b85b7bdfd1f2 100644
--- a/mlir/include/mlir/IR/Dialect.h
+++ b/mlir/include/mlir/IR/Dialect.h
@@ -232,7 +232,7 @@ class Dialect {
 /// matching dialect.
 /// This allows for decoupling the list of dialects "available" from the
 /// dialects loaded in the Context. The parser in particular will lazily load
-/// dialects in in the Context as operations are encountered.
+/// dialects in the Context as operations are encountered.
 class DialectRegistry {
   using MapTy =
       std::map<std::string, std::pair<TypeID, DialectAllocatorFunction>>;
@@ -284,7 +284,7 @@ class DialectRegistry {
 };
 
 /// Deprecated: this provides a global registry for convenience, while we're
-/// transitionning the registration mechanism to a stateless approach.
+/// transitioning the registration mechanism to a stateless approach.
 DialectRegistry &getGlobalDialectRegistry();
 
 /// This controls globally whether the dialect registry is / isn't enabled.


        


More information about the Mlir-commits mailing list