Skip to content

Commit 976d3f0

Browse files
committed
Merge branch 'bs/ls-files-opt-help-text-update'
Help text for "ls-files" options have been updated. * bs/ls-files-opt-help-text-update: ls-files: use imperative mood for -X and -z option description
2 parents 6a4f5da + 54b4d12 commit 976d3f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/ls-files.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
614614
struct option builtin_ls_files_options[] = {
615615
/* Think twice before adding "--nul" synonym to this */
616616
OPT_SET_INT('z', NULL, &line_terminator,
617-
N_("paths are separated with NUL character"), '\0'),
617+
N_("separate paths with the NUL character"), '\0'),
618618
OPT_BOOL('t', NULL, &show_tag,
619619
N_("identify the file status with tags")),
620620
OPT_BOOL('v', NULL, &show_valid_bit,
@@ -651,7 +651,7 @@ int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
651651
N_("skip files matching pattern"),
652652
PARSE_OPT_NONEG, option_parse_exclude),
653653
OPT_CALLBACK_F('X', "exclude-from", &dir, N_("file"),
654-
N_("exclude patterns are read from <file>"),
654+
N_("read exclude patterns from <file>"),
655655
PARSE_OPT_NONEG, option_parse_exclude_from),
656656
OPT_STRING(0, "exclude-per-directory", &dir.exclude_per_dir, N_("file"),
657657
N_("read additional per-directory exclude patterns in <file>")),

0 commit comments

Comments
 (0)