Documentation fix - use '_' instead of '.' in the type alias example.

PiperOrigin-RevId: 242313674
This commit is contained in:
Tatiana Shpeisman 2019-04-06 19:39:53 -07:00 committed by Mehdi Amini
parent 85bc5d0776
commit de2a119451
1 changed files with 2 additions and 2 deletions

View File

@ -540,13 +540,13 @@ names are reserved for [dialect-specific types](#dialect-specific-types).
Example:
```mlir {.mlir}
!avx.m128 = type vector<4 x f32>
!avx_m128 = type vector<4 x f32>
// Using the original type.
"foo"(%x) : vector<4 x f32> -> ()
// Using the type alias.
"foo"(%x) : !avx.m128 -> ()
"foo"(%x) : !avx_m128 -> ()
```
### Builtin Types