Skip to content

Commit 5a5bbc6

Browse files
committed
Fix help now it supports a string
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1744711 13f79535-47bb-0310-9956-ffa450edef68
1 parent c3b831f commit 5a5bbc6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/org/apache/commons/codec/cli/Digest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ private Digest(final String[] args) {
6363
}
6464
if (args.length == 0) {
6565
throw new IllegalArgumentException(
66-
String.format("Usage: java %s [algorithm] [FILE|DIRECTORY]", Digest.class.getName()));
66+
String.format("Usage: java %s [algorithm] [FILE|DIRECTORY|string]", Digest.class.getName()));
6767
}
6868
this.args = args;
6969
algorithm = args[0];

0 commit comments

Comments
 (0)