From acc3ca3b7a08dc8d2690953af41a82652bb4f73b Mon Sep 17 00:00:00 2001 From: Pavel Krajcevski Date: Wed, 9 Jun 2021 16:07:56 +0000 Subject: [PATCH] Fix typo in Toy tutorial Ch1 This aligns the website with the actual test case in the repo. Reviewed By: mehdi_amini Differential Revision: https://reviews.llvm.org/D84193 --- mlir/docs/Tutorials/Toy/Ch-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/docs/Tutorials/Toy/Ch-1.md b/mlir/docs/Tutorials/Toy/Ch-1.md index 2734bad5cf4a..c851f18bf1cb 100644 --- a/mlir/docs/Tutorials/Toy/Ch-1.md +++ b/mlir/docs/Tutorials/Toy/Ch-1.md @@ -59,7 +59,7 @@ def main() { # A new call with <3, 2> (instead of <2, 3>) for both dimensions will # trigger another specialization of `multiply_transpose`. - var e = multiply_transpose(c, d); + var e = multiply_transpose(b, c); # Finally, calling into `multiply_transpose` with incompatible shape will # trigger a shape inference error.