This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-graph.git
The following commit(s) were added to refs/heads/master by this push: new 107fd6c Spelling 107fd6c is described below commit 107fd6c3377be837b55771f46d5cb71a465dd0d4 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jan 1 11:11:53 2023 -0500 Spelling --- .../org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java | 2 +- src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java | 2 +- src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java b/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java index b031645..fd5d75f 100644 --- a/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java +++ b/src/test/java/org/apache/commons/graph/scc/CheriyanMehlhornGabowTestCase.java @@ -37,7 +37,7 @@ import org.junit.Test; /** * Test for Tarjan's algorithm implementation, - * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> testcase. + * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> test. */ public final class CheriyanMehlhornGabowTestCase { diff --git a/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java b/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java index 08ad604..783b96a 100644 --- a/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java +++ b/src/test/java/org/apache/commons/graph/scc/KosarajuSharirTestCase.java @@ -37,7 +37,7 @@ import org.junit.Test; /** * Test for Kosaraju's algorithm implementation, - * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> testcase. + * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> test. */ public final class KosarajuSharirTestCase { diff --git a/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java b/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java index c06614e..7f1de35 100644 --- a/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java +++ b/src/test/java/org/apache/commons/graph/scc/TarjanTestCase.java @@ -38,7 +38,7 @@ import org.junit.Test; /** * Test for Tarjan's algorithm implementation, - * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> testcase. + * see the <a href="http://scienceblogs.com/goodmath/2007/10/computing_strongly_connected_c.php">online</a> test. */ public final class TarjanTestCase {