Skip to content

Commit

Permalink
[TRD-396] Fix about help text
Browse files Browse the repository at this point in the history
  • Loading branch information
brambg committed Jul 30, 2019
1 parent ec59fb4 commit 8d4905b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public void testCommandHelp() throws Exception {
assertSucceedsWithExpectedStdout(success, "usage: java -jar alexandria-app.jar\n" +
" about [-h]\n" +
"\n" +
"Show info about the registered documents and views.\n" +
"Show version number and build date.\n" +
"\n" +
"named arguments:\n" +
" -h, --help show this help message and exit");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class AboutCommand extends AlexandriaCommand {
private AppInfo appInfo;

public AboutCommand() {
super("about", "Show info about the registered documents and views.");
super("about", "Show version number and build date.");
}

public Command withAppInfo(final AppInfo appInfo) {
Expand Down

0 comments on commit 8d4905b

Please sign in to comment.