From 09ffd794bfa78a61b80d4ff800d89c1794716d56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Mon, 18 Oct 2021 23:34:17 +0200 Subject: [PATCH] wording Co-authored-by: Niklas Eicker --- crates/bevy_app/src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_app/src/app.rs b/crates/bevy_app/src/app.rs index b57dd7ee0660b7..f063f9c84baf25 100644 --- a/crates/bevy_app/src/app.rs +++ b/crates/bevy_app/src/app.rs @@ -636,7 +636,7 @@ impl App { .values() .for_each(|v| error!("Initialization resource \"{}\" has not been consumed", v)); if !self.initialization_resources.is_empty() { - panic!("All initialization resources have not been consumed. This can happen if you inserted an initialization resource after the plugin consuming it.") + panic!("Not all initialization resources have been consumed. This can happen if you inserted an initialization resource after the plugin consuming it.") } }