diff --git a/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp b/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp --- a/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp +++ b/mlir/examples/toy/Ch6/mlir/LowerToLLVM.cpp @@ -167,7 +167,7 @@ target.addLegalOp(); // During this lowering, we will also be lowering the MemRef types, that are - // currently being operated on, to a representation in LLVM. Do perform this + // currently being operated on, to a representation in LLVM. To perform this // conversion we use a TypeConverter as part of the lowering. This converter // details how one type maps to another. This is necessary now that we will be // doing more complicated lowerings, involving loop region arguments. diff --git a/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp b/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp --- a/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp +++ b/mlir/examples/toy/Ch7/mlir/LowerToLLVM.cpp @@ -167,7 +167,7 @@ target.addLegalOp(); // During this lowering, we will also be lowering the MemRef types, that are - // currently being operated on, to a representation in LLVM. Do perform this + // currently being operated on, to a representation in LLVM. To perform this // conversion we use a TypeConverter as part of the lowering. This converter // details how one type maps to another. This is necessary now that we will be // doing more complicated lowerings, involving loop region arguments.