From d290927c18d69cabbdc6728a1c2314519db8899e Mon Sep 17 00:00:00 2001 From: khanhkhanhlele Date: Wed, 5 Nov 2025 18:43:48 +0700 Subject: [PATCH] Fix typos in Algorithms.Tests/Graph/KosarajuTests.cs --- Algorithms.Tests/Graph/KosarajuTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Algorithms.Tests/Graph/KosarajuTests.cs b/Algorithms.Tests/Graph/KosarajuTests.cs index c24b576d..ad0d07d6 100644 --- a/Algorithms.Tests/Graph/KosarajuTests.cs +++ b/Algorithms.Tests/Graph/KosarajuTests.cs @@ -29,7 +29,7 @@ public void GetRepresentativesTest() graph.AddEdge(vertex5, vertex4, 1); graph.AddEdge(vertex5, vertex6, 1); - // Run the agorithm and obtain the representative vertex of the SCC to which each vertex belongs. + // Run the algorithm and obtain the representative vertex of the SCC to which each vertex belongs. Dictionary, Vertex> result = Kosaraju.GetRepresentatives(graph); // Check every Vertex belongs to a SCC