Skip to content

Commit 1cc6345

Browse files
committed
comment improvement
1 parent 207b0e1 commit 1cc6345

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mlir/include/mlir/Dialect/Vector/IR/VectorOps.td

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1114,7 +1114,7 @@ def Vector_InsertStridedSliceOp :
11141114
return ::llvm::cast<IntegerAttr>(attr).getInt() != 1;
11151115
});
11161116
}
1117-
// \return The indices in dest that the values are inserted to.
1117+
// \return The indices in `dest` where values are stored.
11181118
FailureOr<SmallVector<int64_t>> getLinearIndices();
11191119
}];
11201120

@@ -1256,7 +1256,7 @@ def Vector_ExtractStridedSliceOp :
12561256
return ::llvm::cast<IntegerAttr>(attr).getInt() != 1;
12571257
});
12581258
}
1259-
// \return The indices in source that the values are taken from.
1259+
// \return The indices in `source` where values are extracted.
12601260
FailureOr<SmallVector<int64_t>> getLinearIndices();
12611261
}];
12621262
let hasCanonicalizer = 1;

0 commit comments

Comments
 (0)