You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/11/21 00:22:01 UTC

(commons-io) branch master updated: Spelling

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-io.git


The following commit(s) were added to refs/heads/master by this push:
     new c78a2329 Spelling
c78a2329 is described below

commit c78a2329bb86d97bae2e961e2e1405d6c3d1dc9e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Nov 20 19:21:56 2023 -0500

    Spelling
---
 src/test/java/org/apache/commons/io/FilenameUtilsTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/java/org/apache/commons/io/FilenameUtilsTest.java b/src/test/java/org/apache/commons/io/FilenameUtilsTest.java
index 31b750ef..05c90f05 100644
--- a/src/test/java/org/apache/commons/io/FilenameUtilsTest.java
+++ b/src/test/java/org/apache/commons/io/FilenameUtilsTest.java
@@ -934,7 +934,7 @@ public class FilenameUtilsTest {
 
     @Test
     public void testNormalizeFromJavaDoc() {
-        // Examples from javadoc
+        // Examples from Javadoc
         assertEquals(SEP + "foo" + SEP, FilenameUtils.normalize("/foo//"));
         assertEquals(SEP + "foo" + SEP, FilenameUtils.normalize(SEP + "foo" + SEP + "." + SEP));
         assertEquals(SEP + "bar", FilenameUtils.normalize(SEP + "foo" + SEP + ".." + SEP + "bar"));