Skip to content

Commit

Permalink
Fix path in rustdoc example
Browse files Browse the repository at this point in the history
  • Loading branch information
ictrobot committed Oct 22, 2024
1 parent 115abe2 commit 3319ca6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/utils/src/graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ use std::marker::PhantomData;
/// }
/// );
///
/// assert_eq!(min_path, 12); // 0 =[6]=> 4 =[4]=> 2 =[1]=> 1 =[2]=> 3
/// assert_eq!(min_path, 12); // 3 =[3]=> 1 =[1]=> 2 =[2]=> 0 =[6]=> 4
/// assert_eq!(max_path, 31); // 1 =[7]=> 0 =[6]=> 4 =[9]=> 3 =[9]=> 2
/// ```
#[inline]
Expand Down

0 comments on commit 3319ca6

Please sign in to comment.