Skip to content

Commit

Permalink
topsort -> cached_topsort
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Feb 13, 2023
1 parent 1091bb9 commit c5ca453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/schedule_v3/schedule.rs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ impl Dag {
/// A cached topological ordering of the graph.
///
/// The order is determined by the ordering dependencies between systems.
pub fn topsort(&self) -> &[NodeId] {
pub fn cached_topsort(&self) -> &[NodeId] {
&self.topsort
}
}
Expand Down

0 comments on commit c5ca453

Please sign in to comment.