From aa099a952efaebbb4c99c9c1c3b60b2a59047ae2 Mon Sep 17 00:00:00 2001 From: Marco Date: Sat, 4 Jan 2025 16:39:59 +0100 Subject: [PATCH] typos cql.mdx --- docs/cardinal/game/cql.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cardinal/game/cql.mdx b/docs/cardinal/game/cql.mdx index 2847f829f..b837b0bde 100644 --- a/docs/cardinal/game/cql.mdx +++ b/docs/cardinal/game/cql.mdx @@ -59,7 +59,7 @@ Two functions are provided in the language that accept a variadic amount of comp **Examples:** -- `CONTAINS(armComponent)` is a query for all entities that have a arm component. The entity can have more components than just the arm. +- `CONTAINS(armComponent)` is a query for all entities that have an arm component. The entity can have more components than just the arm. - `CONTAINS(armComponent, legComponent)` is query for all entities that have both an arm component and a leg component. The entity can have more components than the arm and the leg. @@ -92,4 +92,4 @@ You can use parenthesis to specify and change precedence in CQL. - The above is a query for either an entity with only a leg component or an entity that does not have a health component and also does not have an attack component. - Example: `(EXACT(legComponent) | !CONTAINS(healthComponent)) & !CONTAINS(attackComponent)` -- The above is the same query but with precedence changed. Now it is querying an entity with either exactly one leg component or does not have a health component. Additionally that entity must not ever contain a attack component. +- The above is the same query but with precedence changed. Now it is querying an entity with either exactly one leg component or does not have a health component. Additionally that entity must not ever contain an attack component.