mirror of
https://github.com/bevyengine/bevy
synced 2025-02-16 22:18:33 +00:00
Link to In
in pipe
documentation (#10596)
This commit is contained in:
parent
201f5b2d0b
commit
0c9f265423
1 changed files with 2 additions and 2 deletions
|
@ -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>,
|
||||
|
|
Loading…
Add table
Reference in a new issue