Skip to content

Commit

Permalink
Link to In in pipe documentation (#10596)
Browse files Browse the repository at this point in the history
  • Loading branch information
stepancheg authored Nov 17, 2023
1 parent 201f5b2 commit 0c9f265
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/bevy_ecs/src/system/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ pub trait IntoSystem<In, Out, Marker>: Sized {

/// Pass the output of this system `A` into a second system `B`, creating a new compound system.
///
/// The second system must have `In<T>` as its first parameter, where `T`
/// is the return type of the first system.
/// The second system must have [`In<T>`](crate::system::In) as its first parameter,
/// where `T` is the return type of the first system.
fn pipe<B, Final, MarkerB>(self, system: B) -> PipeSystem<Self::System, B::System>
where
B: IntoSystem<Out, Final, MarkerB>,
Expand Down

0 comments on commit 0c9f265

Please sign in to comment.