Skip to content

Commit 6067dba

Browse files
Update release-content/release-notes/entity-spawn-ticks.md
Co-authored-by: urben1680 <[email protected]>
1 parent 576ee0b commit 6067dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

release-content/release-notes/entity-spawn-ticks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Because of this, these systems have roughly the same performance:
4444

4545
```rs
4646
fn system1(query: Query<Entity, Spawned>) {
47-
for entity in &q { /* entity spawned */ }
47+
for entity in &query { /* entity spawned */ }
4848
}
4949

5050
fn system2(query: Query<(Entity, SpawnDetails)>) {

0 commit comments

Comments
 (0)