Skip to content

Commit

Permalink
Fix --encoding default value rendering in the CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
wendigo committed Nov 26, 2024
1 parent c0dd723 commit a1a3536
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ public class ClientOptions
public boolean disableCompression;

@PropertyMapping(ENCODING)
@Option(names = "--encoding", paramLabel = "<encoding>", description = "Spooled encoding [available: ${ENCODINGS}, default: " + DEFAULT_VALUE + "]", defaultValue = "${PREFERRED_ENCODINGS}")
@Option(names = "--encoding", paramLabel = "<encoding>", description = "Spooled encoding [available: ${ENCODINGS}] " + DEFAULT_VALUE, defaultValue = "${PREFERRED_ENCODINGS}")
public Optional<String> encoding = Optional.empty();

@Option(names = "--editing-mode", paramLabel = "<editing-mode>", defaultValue = "EMACS", description = "Editing mode [${COMPLETION-CANDIDATES}] " + DEFAULT_VALUE)
Expand Down

0 comments on commit a1a3536

Please sign in to comment.