Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkirsz committed Jul 17, 2023
1 parent 1c989aa commit ea66462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/turbo-tasks/src/graph/adjacency_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ where

/// Returns an iterator over the nodes in reverse topological order,
/// starting from the roots.
pub fn reverse_topological<'graph>(&'graph self) -> ReverseTopologicalIter<'graph, T> {
pub fn reverse_topological(&self) -> ReverseTopologicalIter<T> {
ReverseTopologicalIter {
adjacency_map: &self.adjacency_map,
stack: self
Expand Down

0 comments on commit ea66462

Please sign in to comment.