Skip to content

Commit abdf29f

Browse files
committed
coredumpctl: always output proper english sentence
Let's uppercase the first character, and finish them in a full stop.
1 parent d34f3bc commit abdf29f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/coredump/coredumpctl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ static int parse_argv(int argc, char *argv[]) {
217217

218218
case 'o':
219219
if (arg_output) {
220-
log_error("cannot set output more than once");
220+
log_error("Cannot set output more than once.");
221221
return -EINVAL;
222222
}
223223

@@ -241,7 +241,7 @@ static int parse_argv(int argc, char *argv[]) {
241241

242242
case 'F':
243243
if (arg_field) {
244-
log_error("cannot use --field/-F more than once");
244+
log_error("Cannot use --field/-F more than once.");
245245
return -EINVAL;
246246
}
247247
arg_field = optarg;

0 commit comments

Comments
 (0)