From dfa28caea4828ad6e50338c100561cb7a4e1c337 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sat, 22 May 2021 22:18:45 +0200 Subject: [PATCH] example comment Co-authored-by: Alexander Sepity --- crates/bevy_ecs/src/system/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/system/commands.rs b/crates/bevy_ecs/src/system/commands.rs index 17bd0ec2eb0dec..9a492831202865 100644 --- a/crates/bevy_ecs/src/system/commands.rs +++ b/crates/bevy_ecs/src/system/commands.rs @@ -180,7 +180,7 @@ impl<'a> Commands<'a> { }); } - /// Run a one off [`System`]. + /// Run a one-off [`System`]. pub fn run_system(&mut self, system: impl System) { self.queue.push(RunSystem { system: Box::new(system),