Skip to content

Commit c4dda39

Browse files
mattbonnellaalhour
authored andcommitted
Fixed typos in class docstring (aalhour#45)
1 parent b18b439 commit c4dda39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DataStructures/Graphs/CliqueGraph.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace DataStructures.Graphs
77
{
88
/// <summary>
9-
/// Represents a unweighted underected graph, modeling with a set of its maximal complete subgraphs of it.
9+
/// Represents an unweighted undirected graph, modeling with a set of its maximal complete subgraphs of it.
1010
/// Should be fast in clustered graphs
1111
/// </summary>
1212
public class CliqueGraph<T> : IGraph<T> where T : IComparable<T>, IEquatable<T>
@@ -848,4 +848,4 @@ bool IEquatable<UnordererPair<T>>.Equals(UnordererPair<T> other)
848848
#endregion
849849
}
850850

851-
}
851+
}

0 commit comments

Comments
 (0)