Sync synopsis with reality: file arguments are optional.

This commit is contained in:
Tim J. Robbins 2002-05-29 13:33:48 +00:00
parent 759484bacd
commit b312843c3a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97455
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@
.Sh SYNOPSIS
.Nm
.Op Fl s
.Ar file Ar ...
.Op Ar file Ar ...
.Sh DESCRIPTION
The
.Nm

View File

@ -92,7 +92,7 @@ main(argc, argv)
static void
usage()
{
(void)fprintf(stderr, "usage: what [-s] file ...\n");
(void)fprintf(stderr, "usage: what [-s] [file ...]\n");
exit(1);
}