more terse

This commit is contained in:
Christian Hughes 2025-07-11 20:41:06 -05:00
parent 86e6b9534c
commit 980c6e1841

View File

@ -774,11 +774,9 @@ enum UninitializedId {
/// the same set), so we need to track which conditions in that list /// the same set), so we need to track which conditions in that list
/// are newly added and not yet initialized. /// are newly added and not yet initialized.
/// ///
/// Note: We don't need to do this for systems because calling /// Systems don't need this tracking because each `add_systems` call
/// `add_systems` multiple times with the same system results in /// creates separate nodes in the graph with their own conditions,
/// multiple duplicates of that system in the graph, each with their own /// so all conditions are initialized together.
/// separate list of conditions. That means all of a system's conditions
/// are always initialized together.
uninitialized_conditions: Range<usize>, uninitialized_conditions: Range<usize>,
}, },
} }