From 0e95aa028d43b597a42d9648c8d52b35e87f8ec0 Mon Sep 17 00:00:00 2001 From: Muhan Song Date: Mon, 9 Oct 2023 16:48:22 +0800 Subject: [PATCH] fix typo in assignment11/graph.rs Signed-off-by: Muhan Song (cherry picked from commit 2b51e1cbd04c24086fb0edd47d129680b2671765) --- src/assignments/assignment11/graph.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/assignments/assignment11/graph.rs b/src/assignments/assignment11/graph.rs index 441b8a5..77b8586 100644 --- a/src/assignments/assignment11/graph.rs +++ b/src/assignments/assignment11/graph.rs @@ -90,7 +90,7 @@ impl SubGraph { 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 { todo!() }