Skip to content

Commit 206d8cb

Browse files
committed
Fix typo in scopes section of query language manual
1 parent 3dc0754 commit 206d8cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/FlecsQueryLanguage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -509,10 +509,10 @@ Query scopes can be used to apply an operator to the result of more than one ter
509509

510510
```c
511511
// Match spaceships where none of the engines are healthy
512-
SpaceShip, !{ (Engine, $engine), Healthy($healthy) }
512+
SpaceShip, !{ (Engine, $engine), Healthy($engine) }
513513
```
514514
515515
```c
516516
// Match spaceships where all of the engines are healthy
517-
SpaceShip, !{ (Engine, $engine), !Healthy($healthy) }
517+
SpaceShip, !{ (Engine, $engine), !Healthy($engine) }
518518
```

0 commit comments

Comments
 (0)