From 42320396c2869772d5a952b19e84ebe19221cd3d Mon Sep 17 00:00:00 2001 From: Federico Rinaldi Date: Sat, 2 Sep 2023 22:39:57 +0200 Subject: [PATCH] Update crates/bevy_render/src/spatial_bundle.rs Co-authored-by: Alice Cecile --- crates/bevy_render/src/spatial_bundle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/src/spatial_bundle.rs b/crates/bevy_render/src/spatial_bundle.rs index 2d95c1cf3cebf..27dba5c215a77 100644 --- a/crates/bevy_render/src/spatial_bundle.rs +++ b/crates/bevy_render/src/spatial_bundle.rs @@ -10,7 +10,7 @@ use crate::view::{InheritedVisibility, ViewVisibility, Visibility}; /// but also visibility components, /// which determine whether the entity is visible or not. /// -/// Hierarchies of entities must contain +/// Parent-child hierarchies of entities must contain /// all the [`Component`]s in this `Bundle` /// to be rendered correctly. ///