fix typo in assignment11/graph.rs

Signed-off-by: Muhan Song <songmuhan@stu.pku.edu.cn>
(cherry picked from commit 2b51e1cbd0)
This commit is contained in:
Muhan Song
2023-10-09 16:48:22 +08:00
committed by Jaewoo Kim
parent 9e92bf231a
commit 0e95aa028d

View File

@@ -90,7 +90,7 @@ impl SubGraph {
todo!() todo!()
} }
/// Adds a node to the subgraph. Returns true iff the node is successfully removed. /// Removes a node from the subgraph. Returns true iff the node is successfully removed.
pub fn remove_node(&mut self, node: &NodeHandle) -> bool { pub fn remove_node(&mut self, node: &NodeHandle) -> bool {
todo!() todo!()
} }