Fix a typo in Toy Chapter 2 tutorial documentation
authorRoberto Rosmaninho <robertogomes@dcc.ufmg.br>
Sun, 29 Sep 2019 22:53:21 +0000 (15:53 -0700)
committerA. Unique TensorFlower <gardener@tensorflow.org>
Sun, 29 Sep 2019 23:16:29 +0000 (16:16 -0700)
Closes tensorflow/mlir#155

COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/155 from Robertorosmaninho:patch-1 232ac4e1253948c7f3150515e93abe50fcec2f96
PiperOrigin-RevId: 271876515

mlir/g3doc/Tutorials/Toy/Ch-2.md

index 6e0da33..dd49427 100755 (executable)
@@ -20,7 +20,7 @@ non-trivial lowering from their AST to generate LLVM IR.
 As a consequence, multiple frontends end up reimplementing significant pieces of
 infrastructure to support the need for these analyses and transformation. MLIR
 addresses this issue by being designed for extensibility. As such, there are
-little to no pre-defined instructions (*operations* in MLIR terminology) or
+little to none pre-defined instructions (*operations* in MLIR terminology) or
 types.
 
 ## MLIR Dialects and Operations
@@ -36,7 +36,7 @@ semantics.
 
 MLIR supports this extensibility with the concept of
 [Dialects](../../LangRef.md#dialects). Among other things, Dialects provide a
-grouping mechanism for operations under a unique `namespace`. Dialects will be a
+grouping mechanism for operations under a unique `namespace`. Dialects will be
 discussed a bit more in the [next chapter](Ch-3.md).
 
 Here is the MLIR assembly for the Toy 'transpose' operations: