You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: crates/bevy_ecs/src/component.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -339,7 +339,7 @@ impl Components {
339
339
}
340
340
}
341
341
342
-
/// Stores two [`World`](crate::world::World) "ticks" denoting when the component was added and when it was last changed (added or mutably-deferenced).
342
+
/// Records when a component was added and when it was last mutably dereferenced (or added).
343
343
#[derive(Clone,Debug)]
344
344
pubstructComponentTicks{
345
345
pub(crate)added:u32,
@@ -364,7 +364,7 @@ impl ComponentTicks {
364
364
}
365
365
366
366
#[inline]
367
-
/// Returns `true` if the component was added or mutably-dereferenced after the system last ran, `false` otherwise.
367
+
/// Returns `true` if the component was added or mutablydereferenced after the system last ran, `false` otherwise.
0 commit comments