From 9f39867b103213d34121668381cb7dc054eda068 Mon Sep 17 00:00:00 2001 From: River Riddle Date: Mon, 16 May 2022 16:23:01 -0700 Subject: [PATCH] [mlir][NFC] Fix a few langref typos --- mlir/docs/LangRef.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mlir/docs/LangRef.md b/mlir/docs/LangRef.md index cb383be..d264b30 100644 --- a/mlir/docs/LangRef.md +++ b/mlir/docs/LangRef.md @@ -95,8 +95,7 @@ func.func @mul(%A: tensor<100x?xf32>, %B: tensor) -> (tensor<100x50xf3 memref.dealloc %C_m : memref<100x50xf32> // Call TensorFlow built-in function to print the result tensor. - "tf.Print"(%C){message: "mul result"} - : (tensor<100x50xf32) -> (tensor<100x50xf32>) + "tf.Print"(%C){message: "mul result"} : (tensor<100x50xf32>) -> (tensor<100x50xf32>) return %C : tensor<100x50xf32> } @@ -152,7 +151,7 @@ literal ::= `abcd` // Matches the literal `abcd`. Code examples are presented in blue boxes. -```mlir +``` // This is an example use of the grammar above: // This matches things like: ba, bana, boma, banana, banoma, bomana... example ::= `b` (`an` | `om`)* `a` -- 2.7.4