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 2021/09/26 13:58:52 UTC

[commons-io] branch master updated: Typos.

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 f191b33  Typos.
f191b33 is described below

commit f191b33d7275f1094d8d82184b44de674c3b849f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Sep 26 09:58:50 2021 -0400

    Typos.
---
 src/main/java/org/apache/commons/io/FilenameUtils.java                | 4 ++--
 .../java/org/apache/commons/io/filefilter/WildcardFileFilter.java     | 2 +-
 src/main/java/org/apache/commons/io/filefilter/WildcardFilter.java    | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FilenameUtils.java b/src/main/java/org/apache/commons/io/FilenameUtils.java
index 18c255d..3b8888b 100644
--- a/src/main/java/org/apache/commons/io/FilenameUtils.java
+++ b/src/main/java/org/apache/commons/io/FilenameUtils.java
@@ -1534,7 +1534,7 @@ public class FilenameUtils {
      * <p>
      * The wildcard matcher uses the characters '?' and '*' to represent a
      * single or multiple (zero or more) wildcard characters.
-     * This is the same as often found on Dos/Unix command lines.
+     * This is the same as often found on DOS/Unix command lines.
      * The check is case-sensitive always.
      * <pre>
      * wildcardMatch("c.txt", "*.txt")      --&gt; true
@@ -1652,7 +1652,7 @@ public class FilenameUtils {
      * <p>
      * The wildcard matcher uses the characters '?' and '*' to represent a
      * single or multiple (zero or more) wildcard characters.
-     * This is the same as often found on Dos/Unix command lines.
+     * This is the same as often found on DOS/Unix command lines.
      * The check is case-sensitive on Unix and case-insensitive on Windows.
      * <pre>
      * wildcardMatch("c.txt", "*.txt")      --&gt; true
diff --git a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
index b88728d..555f774 100644
--- a/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/WildcardFileFilter.java
@@ -36,7 +36,7 @@ import org.apache.commons.io.IOCase;
  * <p>
  * The wildcard matcher uses the characters '?' and '*' to represent a
  * single or multiple wildcard characters.
- * This is the same as often found on Dos/Unix command lines.
+ * This is the same as often found on DOS/Unix command lines.
  * The check is case-sensitive by default.
  * See {@link FilenameUtils#wildcardMatchOnSystem(String,String)} for more information.
  * </p>
diff --git a/src/main/java/org/apache/commons/io/filefilter/WildcardFilter.java b/src/main/java/org/apache/commons/io/filefilter/WildcardFilter.java
index 0c0d5ee..399a6c4 100644
--- a/src/main/java/org/apache/commons/io/filefilter/WildcardFilter.java
+++ b/src/main/java/org/apache/commons/io/filefilter/WildcardFilter.java
@@ -36,7 +36,7 @@ import org.apache.commons.io.FilenameUtils;
  * <p>
  * The wildcard matcher uses the characters '?' and '*' to represent a
  * single or multiple wildcard characters.
- * This is the same as often found on Dos/Unix command lines.
+ * This is the same as often found on DOS/Unix command lines.
  * The extension check is case-sensitive.
  * See {@link FilenameUtils#wildcardMatch(String, String)} for more information.
  * </p>