From 381277d6c36783a79ecc3e978bf2ca312feaeb0b Mon Sep 17 00:00:00 2001 From: Nathan Fox Date: Thu, 14 Dec 2023 12:25:48 -0500 Subject: [PATCH] Fix typo in docs for `ViewVisibility` (#10979) Simple doc fix. --- crates/bevy_render/src/view/visibility/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/src/view/visibility/mod.rs b/crates/bevy_render/src/view/visibility/mod.rs index bc0c889c2a..a92d2fdeda 100644 --- a/crates/bevy_render/src/view/visibility/mod.rs +++ b/crates/bevy_render/src/view/visibility/mod.rs @@ -85,7 +85,7 @@ impl InheritedVisibility { } } -/// Algorithmically-computed indication or whether an entity is visible and should be extracted for rendering. +/// Algorithmically-computed indication of whether an entity is visible and should be extracted for rendering. /// /// Each frame, this will be reset to `false` during [`VisibilityPropagate`] systems in [`PostUpdate`]. /// Later in the frame, systems in [`CheckVisibility`] will mark any visible entities using [`ViewVisibility::set`].