fix typo in bevy_ecs/README.md (#3869)

# Objective

Fixes #3866

## Solution

Fix comment in bevy_ecs/README.md
This commit is contained in:
Pocket7878 2022-02-05 17:21:00 +00:00
parent 385a2b1895
commit a0af066af7

View File

@ -199,7 +199,7 @@ fn system_changed(query: Query<&Position, Changed<Velocity>>) {
}
}
// Gets the i32 component of all Entities that had a f32 component added since the last run of the System
// Gets the Position component of all Entities that had a Velocity component added since the last run of the System
fn system_added(query: Query<&Position, Added<Velocity>>) {
for position in query.iter() {
}