[Mlir-commits] [mlir] 9c728a7 - [mlir] Fix typo in LangRef

Sean Silva llvmlistbot at llvm.org
Thu Oct 15 12:20:46 PDT 2020


Author: Sean Silva
Date: 2020-10-15T12:19:20-07:00
New Revision: 9c728a7cbf5df69627966b823d30daa6cfe2426d

URL: https://github.com/llvm/llvm-project/commit/9c728a7cbf5df69627966b823d30daa6cfe2426d
DIFF: https://github.com/llvm/llvm-project/commit/9c728a7cbf5df69627966b823d30daa6cfe2426d.diff

LOG: [mlir] Fix typo in LangRef

Added: 
    

Modified: 
    mlir/docs/LangRef.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/LangRef.md b/mlir/docs/LangRef.md
index 6befc79a42a7..9cd3e657b4d3 100644
--- a/mlir/docs/LangRef.md
+++ b/mlir/docs/LangRef.md
@@ -1160,7 +1160,7 @@ list of integer values that are either static or `?` (dynamic case). Strides
 encode the distance, in number of elements, in (linear) memory between
 successive entries along a particular dimension. A stride specification is
 syntactic sugar for an equivalent strided memref representation using
-semi-affine maps. For example, `memref<42x16xf32, offset: 33 strides: [1, 64]>`
+semi-affine maps. For example, `memref<42x16xf32, offset: 33, strides: [1, 64]>`
 specifies a non-contiguous memory region of `42` by `16` `f32` elements such
 that:
 


        


More information about the Mlir-commits mailing list