Skip to content

Commit d146c79

Browse files
committed
Fix typo
1 parent 3238de5 commit d146c79

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/IR/Properties.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ class _makePropStorage<Property prop, string name> {
413413
/// }
414414
///
415415
/// and then appends `prefix` and `suffix`.
416-
class _makeStoragedWrapperPred<Property wrappedProp> {
416+
class _makeStorageWrapperPred<Property wrappedProp> {
417417
Pred ret =
418418
Concat<
419419
"[](" # "const " # wrappedProp.storageType
@@ -466,7 +466,7 @@ class ArrayProperty<Property elem = Property<>, string newSummary = ""> :
466466

467467
let predicate = !if(!eq(elem.predicate, TruePred),
468468
TruePred,
469-
Concat<"::llvm::all_of($_self, ", _makeStoragedWrapperPred<elem>.ret, ")">);
469+
Concat<"::llvm::all_of($_self, ", _makeStorageWrapperPred<elem>.ret, ")">);
470470

471471
defvar theParserBegin = [{
472472
auto& storage = $_storage;

0 commit comments

Comments
 (0)