Skip to content

Commit

Permalink
Fix pipe rendering in code block
Browse files Browse the repository at this point in the history
  • Loading branch information
MewSoul authored and SanderMertens committed Aug 24, 2022
1 parent 2b07c17 commit 8084180
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/Queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -1035,12 +1035,12 @@ The following operators are supported by queries:
| Name | DSL operator | C identifier | C++ identifier | Description |
|----------|----------------|---------------|-------------------|-------------|
| And | `,` | `EcsAnd` | `flecs::And` | Match at least once with term |
| Or | `||` | `EcsOr` | `flecs::Or` | Match at least once with one of the OR terms |
| Or | `\|\|` | `EcsOr` | `flecs::Or` | Match at least once with one of the OR terms |
| Not | `!` | `EcsNot` | `flecs::Not` | Must not match with term |
| Optional | `?` | `EcsOptional` | `flecs::Optional` | May match with term |
| AndFrom | `AND |` | `EcsAndFrom` | `flecs::AndFrom` | Match all components from id at least once |
| OrFrom | `OR |` | `EcsOrFrom` | `flecs::OrFrom` | Match at least one component from id at least once |
| NotFrom | `NOT |` | `EcsNotFrom` | `flecs::NotFrom` | Don't match any components from id |
| AndFrom | `AND \|` | `EcsAndFrom` | `flecs::AndFrom` | Match all components from id at least once |
| OrFrom | `OR \|` | `EcsOrFrom` | `flecs::OrFrom` | Match at least one component from id at least once |
| NotFrom | `NOT \|` | `EcsNotFrom` | `flecs::NotFrom` | Don't match any components from id |

### And Operator
> *Supported by: filters, cached queries, rules*
Expand Down

0 comments on commit 8084180

Please sign in to comment.