[Mlir-commits] [mlir] f71f105 - [mlir][docs] Fix broken links

Marius Brehler llvmlistbot at llvm.org
Wed Apr 13 07:18:46 PDT 2022


Author: Marius Brehler
Date: 2022-04-13T16:18:20+02:00
New Revision: f71f105901da8ee791c2e8778683ff2c449bf0bd

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

LOG: [mlir][docs] Fix broken links

Added: 
    

Modified: 
    mlir/docs/AttributesAndTypes.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/AttributesAndTypes.md b/mlir/docs/AttributesAndTypes.md
index f252e3b028ddf..d0b92254433e7 100644
--- a/mlir/docs/AttributesAndTypes.md
+++ b/mlir/docs/AttributesAndTypes.md
@@ -1,7 +1,7 @@
 # Defining Dialect Attributes and Types
 
 This document describes how to define dialect
-[attributes](../LangRef.md/#attributes) and [types](../LangRef.md/#type-system).
+[attributes](LangRef.md/#attributes) and [types](LangRef.md/#type-system).
 
 [TOC]
 
@@ -280,7 +280,7 @@ MLIR includes several specialized classes for common situations:
 Similarly to operations, Attribute and Type classes may attach `Traits` that
 provide additional mixin methods and other data. `Trait`s may be attached via
 the trailing template argument, i.e. the `traits` list parameter in the example
-above. See the main [`Trait`](../Traits.md) documentation for more information
+above. See the main [`Trait`](Traits.md) documentation for more information
 on defining and using traits.
 
 ### Interfaces
@@ -288,7 +288,7 @@ on defining and using traits.
 Attribute and Type classes may attach `Interfaces` to provide an virtual
 interface into the Attribute or Type. `Interfaces` are added in the same way as
 [Traits](#Traits), by using the `traits` list template parameter of the
-`AttrDef` or `TypeDef`. See the main [`Interface`](../Interfaces.md)
+`AttrDef` or `TypeDef`. See the main [`Interface`](Interfaces.md)
 documentation for more information on defining and using interfaces.
 
 ### Builders


        


More information about the Mlir-commits mailing list