Skip to content

Commit 3319ca6

Browse files
committed
Fix path in rustdoc example
1 parent 115abe2 commit 3319ca6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/utils/src/graph.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ use std::marker::PhantomData;
6969
/// }
7070
/// );
7171
///
72-
/// assert_eq!(min_path, 12); // 0 =[6]=> 4 =[4]=> 2 =[1]=> 1 =[2]=> 3
72+
/// assert_eq!(min_path, 12); // 3 =[3]=> 1 =[1]=> 2 =[2]=> 0 =[6]=> 4
7373
/// assert_eq!(max_path, 31); // 1 =[7]=> 0 =[6]=> 4 =[9]=> 3 =[9]=> 2
7474
/// ```
7575
#[inline]

0 commit comments

Comments
 (0)