The function SccGraph::new(n: usize) is intended to create a directed graph with $n$ vertices and $0$ edges.
However, the current documentation mistakenly refers to n as the number of edges, which is incorrect.
Current documentation:
|
/// Creates a new `SccGraph` with `n` edges. |
This should be corrected to refer to vertices, not edges.