summaryrefslogtreecommitdiff
path: root/usr.bin/printf/printf.c
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2014-05-25 07:36:37 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2014-05-25 07:36:37 +0000
commita89498710ce9341e4900b4bebc45717a611c25b6 (patch)
tree791deb3b679bffdd21f0ff2422c71d1f3189db04 /usr.bin/printf/printf.c
parent3ad8b33cbfd68868ab48b52d61b2f9ca2bb8e5e2 (diff)
don't use plural "arguments" in SYNOPSIS, since "..." makes it
redundant; tweak the rest of the page to stop using both forms, and tweak usage(), which was wrong anyway, to match this;
Diffstat (limited to 'usr.bin/printf/printf.c')
-rw-r--r--usr.bin/printf/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/printf/printf.c b/usr.bin/printf/printf.c
index 0765a301c45..289177c3bf8 100644
--- a/usr.bin/printf/printf.c
+++ b/usr.bin/printf/printf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: printf.c,v 1.21 2014/05/20 01:25:23 guenther Exp $ */
+/* $OpenBSD: printf.c,v 1.22 2014/05/25 07:36:36 jmc Exp $ */
/*
* Copyright (c) 1989 The Regents of the University of California.
@@ -497,5 +497,5 @@ check_conversion(const char *s, const char *ep)
static void
usage(void)
{
- (void)fprintf(stderr, "usage: printf format [arg ...]\n");
+ (void)fprintf(stderr, "usage: printf format [argument ...]\n");
}