From 1b6f32768c92062dba54d0d411411338241e9b14 Mon Sep 17 00:00:00 2001 From: Elliott Pierce Date: Sat, 5 Jul 2025 14:56:39 -0400 Subject: [PATCH] Tried to clarify doc comment some more --- crates/bevy_ecs/src/entity/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_ecs/src/entity/mod.rs b/crates/bevy_ecs/src/entity/mod.rs index bb1cc80788..2395e82e5d 100644 --- a/crates/bevy_ecs/src/entity/mod.rs +++ b/crates/bevy_ecs/src/entity/mod.rs @@ -112,7 +112,7 @@ //! This differentiates each construction of that [`EntityRow`]. //! Again, all an [`Entity`] id is is an [`EntityRow`] (where to find the component values) and an [`EntityGeneration`] (which version of that row it references). //! When an [`Entity`] id is invalid, it just means that that generation of its row has been destructed. -//! It could still be null or it could have since been constructed again. +//! It could still be null (unconstructed) or it could have been re-constructed after it was destructed. //! Either way, that row-generation pair no longer exists. //! //! As mentioned, once an [`EntityRow`] is destructed, it is not discoverable until it is constructed again.