diff --git a/crates/bevy_ecs/src/component/info.rs b/crates/bevy_ecs/src/component/info.rs index 5a1bf96e16..3c3059f6be 100644 --- a/crates/bevy_ecs/src/component/info.rs +++ b/crates/bevy_ecs/src/component/info.rs @@ -641,6 +641,7 @@ impl Components { /// /// # See also /// + /// * [`ComponentIdFor`](super::ComponentIdFor) /// * [`Components::get_id()`] /// * [`Components::resource_id()`] /// * [`World::component_id()`](crate::world::World::component_id) diff --git a/crates/bevy_ecs/src/world/mod.rs b/crates/bevy_ecs/src/world/mod.rs index e77b348c96..57380b489b 100644 --- a/crates/bevy_ecs/src/world/mod.rs +++ b/crates/bevy_ecs/src/world/mod.rs @@ -602,6 +602,7 @@ impl World { /// /// # See also /// + /// * [`ComponentIdFor`](crate::component::ComponentIdFor) /// * [`Components::component_id()`] /// * [`Components::get_id()`] #[inline] @@ -704,7 +705,7 @@ impl World { /// } /// ``` /// - /// ## [`EntityHashSet`](crate::entity::EntityHashMap) + /// ## [`EntityHashSet`](crate::entity::EntityHashSet) /// /// ``` /// # use bevy_ecs::{prelude::*, entity::EntityHashSet}; @@ -838,7 +839,7 @@ impl World { /// } /// ``` /// - /// ## [`EntityHashSet`](crate::entity::EntityHashMap) + /// ## [`EntityHashSet`](crate::entity::EntityHashSet) /// /// ``` /// # use bevy_ecs::{prelude::*, entity::EntityHashSet};