From 8507062d459bc3715b25f19811435232849ca941 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Wed, 11 Oct 2023 13:56:38 -0400 Subject: [PATCH] Update rustworkx-core/src/connectivity/isolates.rs --- rustworkx-core/src/connectivity/isolates.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rustworkx-core/src/connectivity/isolates.rs b/rustworkx-core/src/connectivity/isolates.rs index 6eaa25cec..df1a5b7c2 100644 --- a/rustworkx-core/src/connectivity/isolates.rs +++ b/rustworkx-core/src/connectivity/isolates.rs @@ -13,7 +13,7 @@ use petgraph::visit::{IntoNeighborsDirected, IntoNodeIdentifiers, NodeIndexable}; use petgraph::Direction::{Incoming, Outgoing}; -/// Return the fisolates in a graph object +/// Return the isolates in a graph object /// /// An isolate is a node without any neighbors meaning it has a degree of 0. For /// directed graphs this means the in-degree and out-degree are both 0.