Skip to content

Commit 3e4cdb2

Browse files
Fix typos in Algorithms.Tests/Graph/KosarajuTests.cs (#557)
1 parent 0beccaf commit 3e4cdb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Algorithms.Tests/Graph/KosarajuTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public void GetRepresentativesTest()
2929
graph.AddEdge(vertex5, vertex4, 1);
3030
graph.AddEdge(vertex5, vertex6, 1);
3131

32-
// Run the agorithm and obtain the representative vertex of the SCC to which each vertex belongs.
32+
// Run the algorithm and obtain the representative vertex of the SCC to which each vertex belongs.
3333
Dictionary<Vertex<int>, Vertex<int>> result = Kosaraju<int>.GetRepresentatives(graph);
3434

3535
// Check every Vertex belongs to a SCC

0 commit comments

Comments
 (0)