Correct synopsis and usage(): pattern arguments are not optional.

This commit is contained in:
Tim J. Robbins 2002-05-16 04:39:19 +00:00
parent 3468b317cb
commit bc0259551f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=96708
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@
.Op Fl n Ar number
.Ar file
.Bk
.Op Ar args ...
.Ar args ...
.Ek
.Sh DESCRIPTION
The

View File

@ -204,7 +204,7 @@ usage(void)
{
fprintf(stderr,
"usage: csplit [-ks] [-f prefix] [-n number] file [args ...]\n");
"usage: csplit [-ks] [-f prefix] [-n number] file args ...\n");
exit(1);
}