diff --git a/crates/bevy_ecs/src/spawn.rs b/crates/bevy_ecs/src/spawn.rs index 091a5ea134..a201205c3f 100644 --- a/crates/bevy_ecs/src/spawn.rs +++ b/crates/bevy_ecs/src/spawn.rs @@ -133,9 +133,10 @@ impl) + Send + Sync + 'static> } } -/// A [`SpawnableList`] that adds entities using an iterator of [`Entity`]: +/// A [`SpawnableList`] that links already spawned entities to the root entity via relations of type `I`. /// -/// useful if the entity has already been spawned earlier or if you spawn multiple relationships link to the same entity at the same time. +/// This is useful if the entity has already been spawned earlier or if you spawn multiple relationships link to the same entity at the same time. +/// If you only need to do this for a single entity, consider using [`WithOneRelated`]. /// /// ``` /// # use bevy_ecs::hierarchy::Children;