Fix a typo in Toy Chapter 2 tutorial documentation

Closes tensorflow/mlir#155

COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/155 from Robertorosmaninho:patch-1 232ac4e1253948c7f3150515e93abe50fcec2f96
PiperOrigin-RevId: 271876515
This commit is contained in:
Roberto Rosmaninho 2019-09-29 15:53:21 -07:00 committed by A. Unique TensorFlower
parent b6cec098f9
commit 0db0fe3c03
1 changed files with 2 additions and 2 deletions

View File

@ -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: