mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
doc: update a reference from add_system to add_systems (#8881)
Small fix for a forgotten documentation comment.
This commit is contained in:
parent
84de9e7f28
commit
17e1d211c5
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ use std::borrow::Cow;
|
|||
/// Systems are functions with all arguments implementing
|
||||
/// [`SystemParam`](crate::system::SystemParam).
|
||||
///
|
||||
/// Systems are added to an application using `App::add_system(my_system)`
|
||||
/// Systems are added to an application using `App::add_systems(Update, my_system)`
|
||||
/// or similar methods, and will generally run once per pass of the main loop.
|
||||
///
|
||||
/// Systems are executed in parallel, in opportunistic order; data access is managed automatically.
|
||||
|
|
Loading…
Reference in a new issue