Skip to content

Commit 7641ceb

Browse files
committed
corrected word
1 parent bee59ed commit 7641ceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_ecs/src/system/combinator.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ where
320320
/// world.insert_resource(Message("42".to_string()));
321321
/// world.insert_resource(Signal("217".to_string()));
322322
///
323-
/// // pipe the joined system's output into the `filter_system`s input
323+
/// // join the two systems together
324324
/// let mut joined_system = parse_message_system.join(parse_signal_system);
325325
/// joined_system.initialize(&mut world);
326326
/// assert_eq!(joined_system.run((), &mut world), (Ok(42), Ok(217)));

0 commit comments

Comments
 (0)