Skip to content

Commit

Permalink
Touch up help output
Browse files Browse the repository at this point in the history
Stop attempting to align Option and Method description columns with one
another. It's a moving target as we add options and method names, and
this help output format will probably change in the future anyway.
  • Loading branch information
cbeams committed Apr 26, 2020
1 parent f580349 commit a6a8702
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cli/src/main/java/bisq/cli/CliMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ private static void printHelp(OptionParser parser, PrintStream stream) {
stream.println();
parser.printHelpOn(stream);
stream.println();
stream.println("Method Description");
stream.println("------- -----------");
stream.println("getversion Get server version");
stream.println("getbalance Get server wallet balance");
stream.println("Method Description");
stream.println("------ -----------");
stream.println("getversion Get server version");
stream.println("getbalance Get server wallet balance");
stream.println();
} catch (IOException ex) {
ex.printStackTrace(stream);
Expand Down

0 comments on commit a6a8702

Please sign in to comment.