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/08/08 12:53:13 UTC

[commons-io] branch master updated: Comment 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


The following commit(s) were added to refs/heads/master by this push:
     new 8a49feb  Comment typo.
8a49feb is described below

commit 8a49feb88ef048d6d763dde0d0b032ad5a18c515
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Aug 8 08:53:08 2021 -0400

    Comment typo.
---
 src/main/java/org/apache/commons/io/FileSystemUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/io/FileSystemUtils.java b/src/main/java/org/apache/commons/io/FileSystemUtils.java
index 53b0e48..9625035 100644
--- a/src/main/java/org/apache/commons/io/FileSystemUtils.java
+++ b/src/main/java/org/apache/commons/io/FileSystemUtils.java
@@ -507,7 +507,7 @@ public class FileSystemUtils {
             ThreadMonitor.stop(monitor);
 
             if (proc.exitValue() != 0) {
-                // os command problem, throw exception
+                // OS command problem, throw exception
                 throw new IOException(
                         "Command line returned OS error code '" + proc.exitValue() +
                         "' for command " + Arrays.asList(cmdAttribs));