From f20c9ee0f5223189c8f3ca49e9bde2d7a17e7fa6 Mon Sep 17 00:00:00 2001 From: Alex Date: Tue, 16 Aug 2022 20:46:46 +0000 Subject: [PATCH] fix: grammar and typo fixes in rendergraph docs (#5710) # Objective - fix a typo on RendGraph Docs ## Solution - fixed typo --- Co-authored-by: Carter Anderson --- crates/bevy_render/src/render_graph/graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bevy_render/src/render_graph/graph.rs b/crates/bevy_render/src/render_graph/graph.rs index 0633cb342a..39d76120a4 100644 --- a/crates/bevy_render/src/render_graph/graph.rs +++ b/crates/bevy_render/src/render_graph/graph.rs @@ -12,7 +12,7 @@ use std::{borrow::Cow, fmt::Debug}; use super::EdgeExistence; /// The render graph configures the modular, parallel and re-usable render logic. -/// It is a retained and stateless (nodes themselves may have internal state) structure, +/// It is a retained and stateless (nodes themselves may have their own internal state) structure, /// which can not be modified while it is executed by the graph runner. /// /// The `RenderGraphRunner` is responsible for executing the entire graph each frame.