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-text.git
The following commit(s) were added to refs/heads/master by this push: new 89927a38 In-line comment typos 89927a38 is described below commit 89927a38392ff26c4a565ddad16578c1759df02d Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Fri May 19 08:53:52 2023 -0400 In-line comment typos --- src/test/java/org/apache/commons/text/TextStringBuilderTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/apache/commons/text/TextStringBuilderTest.java b/src/test/java/org/apache/commons/text/TextStringBuilderTest.java index f5e31819..7a13e5b7 100644 --- a/src/test/java/org/apache/commons/text/TextStringBuilderTest.java +++ b/src/test/java/org/apache/commons/text/TextStringBuilderTest.java @@ -1054,7 +1054,7 @@ public class TextStringBuilderTest { final int hc1b = sb.hashCode(); assertEquals(hc1a, hc1b); - // following TEXT-211 : the hashcode of the buffer may not be equals to the hashcode of the TextStringBuilder itself + // following TEXT-211 : the hash code of the buffer may not be equals to the hash code of the TextStringBuilder itself final int emptyHc = Arrays.hashCode(sb.getBuffer()); assertNotEquals(emptyHc, hc1a);