diff --git a/crates/bevy_render/src/render_graph/node.rs b/crates/bevy_render/src/render_graph/node.rs index 5c8c6ce39b..eaaead9b03 100644 --- a/crates/bevy_render/src/render_graph/node.rs +++ b/crates/bevy_render/src/render_graph/node.rs @@ -43,13 +43,13 @@ impl NodeId { /// inside the graph. For more information see [`SlotType`](super::SlotType). pub trait Node: Downcast + Send + Sync + 'static { /// Specifies the required input slots for this node. - /// They will then be available during the run method inside the [`RenderContext`]. + /// They will then be available during the run method inside the [`RenderGraphContext`]. fn input(&self) -> Vec { Vec::new() } /// Specifies the produced output slots for this node. - /// They can then be passed one inside [`RenderContext`] during the run method. + /// They can then be passed one inside [`RenderGraphContext`] during the run method. fn output(&self) -> Vec { Vec::new() }