Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/easy-run' into easy-run
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile committed Jul 30, 2021
2 parents c0a1801 + 1ca4fcd commit 1913ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/system/system.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ pub trait System: Send + Sync + 'static {
/// }
///
/// world.insert_resource::<Counter>(Counter(0));
/// count_up.run_direct((), &mut world);
/// count_up.system().run_direct((), &mut world);
/// let counter = world.get_resource::<Counter>().unwrap();
/// assert_eq!(counter.0, 1);
/// ```
Expand Down

0 comments on commit 1913ec9

Please sign in to comment.