[Mlir-commits] [mlir] cee633c - Fix broken doc links to DefiningAttributesAndTypes.md after move to Tutorials/
Mehdi Amini
llvmlistbot at llvm.org
Sat Apr 18 21:56:09 PDT 2020
Author: Mehdi Amini
Date: 2020-04-19T04:52:37Z
New Revision: cee633c8e2105eb3cda06f055aa44c9ab5adef72
URL: https://github.com/llvm/llvm-project/commit/cee633c8e2105eb3cda06f055aa44c9ab5adef72
DIFF: https://github.com/llvm/llvm-project/commit/cee633c8e2105eb3cda06f055aa44c9ab5adef72.diff
LOG: Fix broken doc links to DefiningAttributesAndTypes.md after move to Tutorials/
Added:
Modified:
mlir/docs/LangRef.md
mlir/docs/Tutorials/Toy/Ch-7.md
Removed:
################################################################################
diff --git a/mlir/docs/LangRef.md b/mlir/docs/LangRef.md
index 4b00869697c8..c001b0f3cf22 100644
--- a/mlir/docs/LangRef.md
+++ b/mlir/docs/LangRef.md
@@ -648,7 +648,7 @@ the lighter syntax: `!foo.something<a%%123^^^>>>` because it contains characters
that are not allowed in the lighter syntax, as well as unbalanced `<>`
characters.
-See [here](DefiningAttributesAndTypes.md) to learn how to define dialect types.
+See [here](Tutorials/DefiningAttributesAndTypes.md) to learn how to define dialect types.
### Standard Types
@@ -1243,7 +1243,7 @@ the lighter syntax: `#foo.something<a%%123^^^>>>` because it contains characters
that are not allowed in the lighter syntax, as well as unbalanced `<>`
characters.
-See [here](DefiningAttributesAndTypes.md) to learn how to define dialect
+See [here](Tutorials/DefiningAttributesAndTypes.md) to learn how to define dialect
attribute values.
### Standard Attribute Values
diff --git a/mlir/docs/Tutorials/Toy/Ch-7.md b/mlir/docs/Tutorials/Toy/Ch-7.md
index ce7f57e04d88..0dce6d25c904 100644
--- a/mlir/docs/Tutorials/Toy/Ch-7.md
+++ b/mlir/docs/Tutorials/Toy/Ch-7.md
@@ -541,4 +541,4 @@ module {
You can build `toyc-ch7` and try yourself: `toyc-ch7
test/Examples/Toy/Ch7/struct-codegen.toy -emit=mlir`. More details on defining
custom types can be found in
-[DefiningAttributesAndTypes](../../DefiningAttributesAndTypes.md).
+[DefiningAttributesAndTypes](../DefiningAttributesAndTypes.md).
More information about the Mlir-commits
mailing list