From 2b51e1cbd04c24086fb0edd47d129680b2671765 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 --- 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 7f8f823ef..08f812201 100644 --- a/src/assignments/assignment11/graph.rs +++ b/src/assignments/assignment11/graph.rs @@ -84,7 +84,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!() }