[Mlir-commits] [mlir] [mlir] Fix typo in doc string (indepently => independently) (PR #195689)
Kevin Boyette
llvmlistbot at llvm.org
Mon May 4 10:03:18 PDT 2026
https://github.com/KevinBoyette created https://github.com/llvm/llvm-project/pull/195689
None
>From 7b30198bb7a748c912170554c4612e088419355c Mon Sep 17 00:00:00 2001
From: Kevin Boyette <kevinxboyette at gmail.com>
Date: Mon, 4 May 2026 13:02:42 -0400
Subject: [PATCH] [mlir] Fix typo in doc string (indepently => independently)
---
mlir/include/mlir/IR/DialectRegistry.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/include/mlir/IR/DialectRegistry.h b/mlir/include/mlir/IR/DialectRegistry.h
index ea957b808260e..cd609603494a9 100644
--- a/mlir/include/mlir/IR/DialectRegistry.h
+++ b/mlir/include/mlir/IR/DialectRegistry.h
@@ -48,7 +48,7 @@ class DialectExtensionBase {
/// Return the dialects that our required by this extension to be loaded
/// before applying. If empty then the extension is invoked for every loaded
- /// dialect indepently.
+ /// dialect independently.
ArrayRef<StringRef> getRequiredDialects() const { return dialectNames; }
/// Apply this extension to the given context and the required dialects.
More information about the Mlir-commits
mailing list