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 2019/05/30 18:39:34 UTC

[commons-codec] branch master updated: Javadoc: Use "file name" instead of "filename".

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


The following commit(s) were added to refs/heads/master by this push:
     new d85f343  Javadoc: Use "file name" instead of "filename".
d85f343 is described below

commit d85f343423638ea0a2a8da26df9851704b36dbd1
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu May 30 14:39:31 2019 -0400

    Javadoc: Use "file name" instead of "filename".
---
 src/main/java/org/apache/commons/codec/cli/Digest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/codec/cli/Digest.java b/src/main/java/org/apache/commons/codec/cli/Digest.java
index 7cd6966..4f0a064 100644
--- a/src/main/java/org/apache/commons/codec/cli/Digest.java
+++ b/src/main/java/org/apache/commons/codec/cli/Digest.java
@@ -81,7 +81,7 @@ public class Digest {
 
     private void println(final String prefix, final byte[] digest, final String fileName) {
         // The standard appears to be to print
-        // hex, space, then either space or '*' followed by filename
+        // hex, space, then either space or '*' followed by file name
         // where '*' is used for binary files
         // shasum(1) has a -b option which generates " *" separator
         // we don't distinguish binary files at present