Skip to content

Commit

Permalink
Keep CLI console output text lowercase where possible
Browse files Browse the repository at this point in the history
Be consistent.
  • Loading branch information
ghubstan committed May 15, 2022
1 parent 8e5acf2 commit b3e6160
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/main/java/bisq/cli/CliMain.java
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ public static void run(String[] args) {
? client.getOpenTrades()
: client.getTradeHistory(category);
if (trades.isEmpty()) {
out.printf("no %s trades found%n", category.name());
out.printf("no %s trades found%n", category.name().toLowerCase());
} else {
var tableType = category.equals(OPEN)
? OPEN_TRADES_TBL
Expand Down

0 comments on commit b3e6160

Please sign in to comment.