Skip to content

Commit 0e46b04

Browse files
committed
Grammar fixes in render graph doc (#5671)
# Objective Fixing some grammar in the rustdoc for RenderGraph
1 parent de6bef7 commit 0e46b04

File tree

1 file changed

+2
-2
lines changed
  • crates/bevy_render/src/render_graph

1 file changed

+2
-2
lines changed

crates/bevy_render/src/render_graph/graph.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use std::{borrow::Cow, fmt::Debug};
1212
use super::EdgeExistence;
1313

1414
/// 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,
1616
/// which can not be modified while it is executed by the graph runner.
1717
///
1818
/// The `RenderGraphRunner` is responsible for executing the entire graph each frame.
@@ -25,7 +25,7 @@ use super::EdgeExistence;
2525
/// Slots describe the render resources created or used by the nodes.
2626
///
2727
/// 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.
2929
///
3030
/// ## Example
3131
/// Here is a simple render graph example with two nodes connected by a node edge.

0 commit comments

Comments
 (0)