Fix argument naming in dirname(1)

This commit is contained in:
sin 2014-11-13 14:26:38 +00:00
parent a7ad11ed5e
commit f9a7a7e59f
2 changed files with 3 additions and 3 deletions

View File

@ -3,11 +3,11 @@
dirname \- strip final path component
.SH SYNOPSIS
.B dirname
.I string
.I pathname
.SH DESCRIPTION
.B dirname
prints the
.I string
.I pathname
with its final path component removed.
.SH SEE ALSO
.IR basename (1),

View File

@ -8,7 +8,7 @@
static void
usage(void)
{
eprintf("usage: %s string\n", argv0);
eprintf("usage: %s pathname\n", argv0);
}
int