aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-03-02 11:04:09 -0800
committerRob Landley <rob@landley.net>2019-03-02 14:11:05 -0600
commitb8001d13a68b1b05bff7008fd657af0563890d3f (patch)
treee526426acf03977219c8743adcc366d47217e910 /toys
parent0de3874fe2c6c16775bbc93ba5866369eb147bc4 (diff)
downloadtoybox-b8001d13a68b1b05bff7008fd657af0563890d3f.tar.gz
Fix instances of "Usage:" rather than "usage:".
Diffstat (limited to 'toys')
-rw-r--r--toys/net/rfkill.c2
-rw-r--r--toys/pending/arp.c2
-rw-r--r--toys/pending/ip.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/toys/net/rfkill.c b/toys/net/rfkill.c
index 56e57687..26879e92 100644
--- a/toys/net/rfkill.c
+++ b/toys/net/rfkill.c
@@ -11,7 +11,7 @@ config RFKILL
bool "rfkill"
default y
help
- Usage: rfkill COMMAND [DEVICE]
+ usage: rfkill COMMAND [DEVICE]
Enable/disable wireless devices.
diff --git a/toys/pending/arp.c b/toys/pending/arp.c
index 7e7b8668..eaecfc71 100644
--- a/toys/pending/arp.c
+++ b/toys/pending/arp.c
@@ -10,7 +10,7 @@ config ARP
bool "arp"
default n
help
- Usage: arp
+ usage: arp
[-vn] [-H HWTYPE] [-i IF] -a [HOSTNAME]
[-v] [-i IF] -d HOSTNAME [pub]
[-v] [-H HWTYPE] [-i IF] -s HOSTNAME HWADDR [temp]
diff --git a/toys/pending/ip.c b/toys/pending/ip.c
index 68d4c2ca..66dd06fe 100644
--- a/toys/pending/ip.c
+++ b/toys/pending/ip.c
@@ -2063,7 +2063,7 @@ static int iproute(char **argv)
// ===========================================================================
static void show_iprule_help(void)
{
- char *errmsg = "Usage: ip rule [ list | add | del ] SELECTOR ACTION\n"
+ char *errmsg = "usage: ip rule [ list | add | del ] SELECTOR ACTION\n"
"SELECTOR := [ from PREFIX ] [ to PREFIX ] [pref NUMBER] [ tos TOS ]\n"
" [ fwmark FWMARK] [ dev/iif STRING ] [type TYPE]\n"
"ACTION := [ table TABLE_ID ] [ realms [SRCREALM/]DSTREALM ]";
@@ -2312,7 +2312,7 @@ static int iprule(char **argv)
//============================================================================
static void show_iptunnel_help(void)
{
- char *errmsg = "Usage: iptunnel { add | change | del | show } [NAME]\n"
+ char *errmsg = "usage: iptunnel { add | change | del | show } [NAME]\n"
" [mode { ipip | gre | sit }] [remote ADDR] [local ADDR]\n"
" [[i|o]seq] [[i|o]key KEY] [[i|o]csum] [ttl TTL]\n"
" [tos TOS] [[no]pmtudisc] [dev PHYS_DEV]";