find: fix minor typo in --help output

* find/util.c (usage): Terminate sentence about -D with a dot.
(show_valid_debug_options): While at it, add indentation for -D values.
This commit is contained in:
Bernhard Voelker 2025-10-13 22:09:28 +02:00
parent fbbda507c6
commit 1c39dc6055

View File

@ -148,7 +148,7 @@ show_valid_debug_options (int full)
{
for (i=0; i<N_DEBUGASSOC; ++i)
{
fprintf (stdout, "%s%s", (i>0 ? ", " : ""), debugassoc[i].name);
fprintf (stdout, "%s%s", (i>0 ? ", " : " "), debugassoc[i].name);
}
}
}
@ -206,7 +206,7 @@ Other common options:\n"));
show_valid_debug_options (0);
HTL (_("\n\
Use '-D help' for a description of the options, or see find(1)\n\
Use '-D help' for a description of the options, or see find(1).\n\
\n"));
explain_how_to_report_bugs (stdout, program_name);