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 2020/12/12 15:17:40 UTC

[commons-io] 06/06: Fix typo.

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

commit fe6e6e9872eb8dd75f8b84cf48d0674f8748e02b
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Dec 12 10:17:19 2020 -0500

    Fix typo.
---
 .../java/org/apache/commons/io/input/UnixLineEndingInputStream.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java b/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java
index 1b92bb8..dc43e30 100644
--- a/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/UnixLineEndingInputStream.java
@@ -119,6 +119,6 @@ public class UnixLineEndingInputStream extends InputStream {
      */
     @Override
     public synchronized void mark(final int readlimit) {
-        throw new UnsupportedOperationException("Mark notsupported");
+        throw new UnsupportedOperationException("Mark not supported");
     }
 }