File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
crates/bevy_render/src/render_graph Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use std::{borrow::Cow, fmt::Debug};
12
12
use super :: EdgeExistence ;
13
13
14
14
/// The render graph configures the modular, parallel and re-usable render logic.
15
- /// It is a retained and stateless (nodes itself my have their internal state) structure,
15
+ /// It is a retained and stateless (nodes themselves may have internal state) structure,
16
16
/// which can not be modified while it is executed by the graph runner.
17
17
///
18
18
/// The `RenderGraphRunner` is responsible for executing the entire graph each frame.
@@ -25,7 +25,7 @@ use super::EdgeExistence;
25
25
/// Slots describe the render resources created or used by the nodes.
26
26
///
27
27
/// Additionally a render graph can contain multiple sub graphs, which are run by the
28
- /// corresponding nodes. Every render graph can have it’s own optional input node.
28
+ /// corresponding nodes. Every render graph can have its own optional input node.
29
29
///
30
30
/// ## Example
31
31
/// Here is a simple render graph example with two nodes connected by a node edge.
You can’t perform that action at this time.
0 commit comments