Skip to content

Commit 82234f3

Browse files
committed
Modify help message
1 parent 9bbc501 commit 82234f3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/app/Kanzi.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,13 @@ void printHelp(Printer& log, const string& mode, bool showHeader)
102102

103103
if (mode.compare(0, 1, "c") == 0) {
104104
log.println(" Optional name of the output file or directory (defaults to", true);
105-
log.println(" <inputName.knz>) or 'none' or 'stdout'.\n", true);
105+
log.println(" <inputName.knz> if input is <inputName> or 'stdout' if input is 'stdin').", true);
106+
log.println(" or 'none' or 'stdout'.\n", true);
106107
}
107108
else if (mode.compare(0, 1, "d") == 0) {
108109
log.println(" Optional name of the output file or directory (defaults to", true);
109-
log.println(" <inputName.bak>) or 'none' or 'stdout'.\n", true);
110+
log.println(" <inputName> if input is <inputName.knz> or 'stdout' if input is 'stdin').", true);
111+
log.println(" or 'none' or 'stdout'.\n", true);
110112
}
111113
else {
112114
log.println(" Optional name of the output file or 'none' or 'stdout'.\n", true);

0 commit comments

Comments
 (0)