From d85b89b43040ba21fbdadc116ca5affe2e44f070 Mon Sep 17 00:00:00 2001 From: Aevyrie Date: Mon, 22 Feb 2021 03:43:28 +0000 Subject: [PATCH] Update example with new stage terminology (#1496) Updates old comments from the old `stage::UPDATE` terminology to the new `CoreStage` enum. --- examples/ecs/removal_detection.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/ecs/removal_detection.rs b/examples/ecs/removal_detection.rs index 424fbf3bae..4a329ce426 100644 --- a/examples/ecs/removal_detection.rs +++ b/examples/ecs/removal_detection.rs @@ -11,8 +11,8 @@ fn main() { // `Component` is removed. // // With these constraints in mind we make sure to place the system that removes a `Component` on - // the `stage::UPDATE` stage, and the system that reacts on the removal on the - // `stage::POST_UPDATE` stage. + // the `CoreStage::Update' stage, and the system that reacts on the removal on the + // `CoreStage::PostUpdate` stage. App::build() .add_plugins(DefaultPlugins) .add_startup_system(setup.system())