From d7196c2b3979bf88d8249626d0d79859a80bcc00 Mon Sep 17 00:00:00 2001 From: Erwan Billard <82095453+iacker@users.noreply.github.com> Date: Mon, 13 Jul 2026 23:15:03 +0200 Subject: [PATCH] doc: fix typo in game simulation systems documentation Fix 'actionsconsuming' -> 'actions consuming' in the systems doc. Signed-off-by: Erwan Billard <82095453+iacker@users.noreply.github.com> --- doc/code/game_simulation/systems.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/code/game_simulation/systems.md b/doc/code/game_simulation/systems.md index 61ea2fcf34..7491fbeeda 100644 --- a/doc/code/game_simulation/systems.md +++ b/doc/code/game_simulation/systems.md @@ -14,7 +14,7 @@ Handles idle actions for game entities. `idle(..)` updates the animation of the game entity. This requires the game entity to have the `Idle` component. The function returns a time of 0 since -no actionsconsuming simulation time are taken. +no actions consuming simulation time are taken. ## Move