diff --git a/src/QuikGraph/Extensions/AlgorithmExtensions.cs b/src/QuikGraph/Extensions/AlgorithmExtensions.cs index e446e1ba8..165acec39 100644 --- a/src/QuikGraph/Extensions/AlgorithmExtensions.cs +++ b/src/QuikGraph/Extensions/AlgorithmExtensions.cs @@ -952,7 +952,7 @@ private static bool IsDirectedAcyclicGraphInternal( /// Vertex type. /// Edge type. /// Edges of forming the graph to visit. - /// True if the graph contains a cycle, false otherwise. + /// True if the graph contains no cycle, false otherwise. /// /// is or at least one of them is . /// @@ -975,7 +975,7 @@ public static bool IsDirectedAcyclicGraph( /// Vertex type. /// Edge type. /// Graph to visit. - /// True if the graph contains a cycle, false otherwise. + /// True if the graph contains no cycle, false otherwise. /// is . [Pure] public static bool IsDirectedAcyclicGraph( @@ -1037,7 +1037,7 @@ private static bool IsUndirectedAcyclicGraphInternal( /// Vertex type. /// Edge type. /// Edges of forming the graph to visit. - /// True if the graph contains a cycle, false otherwise. + /// True if the graph contains no cycle, false otherwise. /// /// is or at least one of them is . /// @@ -1057,7 +1057,7 @@ public static bool IsUndirectedAcyclicGraph( /// Vertex type. /// Edge type. /// Graph to visit. - /// True if the graph contains a cycle, false otherwise. + /// True if the graph contains no cycle, false otherwise. /// is . [Pure] public static bool IsUndirectedAcyclicGraph(