From 74e2dc3e93777bf6498229cd2a7ee4e67f34261b Mon Sep 17 00:00:00 2001 From: Sander Mertens Date: Wed, 16 Oct 2024 13:41:48 -0700 Subject: [PATCH] Fix broken link in relationships manual --- docs/Relationships.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Relationships.md b/docs/Relationships.md index 11596b7f65..60ebe0ba6c 100644 --- a/docs/Relationships.md +++ b/docs/Relationships.md @@ -732,7 +732,7 @@ More advanced queries are possible with Flecs queries. See the [Queries manual]( Relationship pairs, just like regular component, can be associated with data. To associate data with a relationship pair, at least one of its elements needs to be a component. A pair can be associated with at most one type. To determine which type is associated with a relationship pair, the following rules are followed in order: - If neither the first nor second elements are a type, the pair is a tag -- If the first element has the [tag](Relationships.md#tag-property) property, the pair is a tag +- If the first element has the [PairIsTag](https://www.flecs.dev/flecs/md_docs_2ComponentTraits.html#pairistag-trait) trait, the pair is a tag - If the first element is a type, the pair type is the first element - If the second element is a type, the pair type is the second element