From 477eb0af1f1e7affafcfb4afc225b9d872f7dcf5 Mon Sep 17 00:00:00 2001 From: Christian Hughes Date: Tue, 3 Dec 2024 22:31:36 -0600 Subject: [PATCH] remove redundant doc link --- crates/bevy_ecs/src/schedule/executor/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/schedule/executor/mod.rs b/crates/bevy_ecs/src/schedule/executor/mod.rs index 4f7491ab44dde..88062f88fa8ae 100644 --- a/crates/bevy_ecs/src/schedule/executor/mod.rs +++ b/crates/bevy_ecs/src/schedule/executor/mod.rs @@ -135,7 +135,7 @@ impl SystemSchedule { #[allow(non_camel_case_types)] pub struct apply_deferred; -/// Returns `true` if the [`System`](crate::system::System) is an instance of [`apply_deferred`]. +/// Returns `true` if the [`System`] is an instance of [`apply_deferred`]. pub(super) fn is_apply_deferred(system: &BoxedSystem) -> bool { // deref to use `System::type_id` instead of `Any::type_id` system.as_ref().type_id() == TypeId::of::()