diff --git a/src/assignments/assignment11/graph.rs b/src/assignments/assignment11/graph.rs index 7c3ca6f..7f8f823 100644 --- a/src/assignments/assignment11/graph.rs +++ b/src/assignments/assignment11/graph.rs @@ -90,7 +90,7 @@ impl SubGraph { } /// Returns true iff the subgraph contains a cycle. Nodes that do not belong to this subgraph - /// are ignored. See https://en.wikipedia.org/wiki/Cycle_(graph_theory) for an algorithm. + /// are ignored. See for an algorithm. pub fn detect_cycle(&self) -> bool { todo!() }