diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 15:15:45 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2021-04-14 15:15:45 +0200 |
commit | ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440 (patch) | |
tree | 2b09bd23498d75f02e7d8bd2d5132e79deb299d7 /miscutils | |
parent | 93f1255af28c5fca0e704c6096e25fb3a5c09a67 (diff) | |
download | busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.tar.gz busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.tar.bz2 busybox-w32-ba9f9c2d2c57f6041c6c01ba7c0e8379a5f5d440.zip |
*: --help text tweaks
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/bc.c | 4 | ||||
-rw-r--r-- | miscutils/watchdog.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/miscutils/bc.c b/miscutils/bc.c index 553d0f472..dd9f4f8f1 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c | |||
@@ -108,14 +108,14 @@ | |||
108 | 108 | ||
109 | //See www.gnu.org/software/bc/manual/bc.html | 109 | //See www.gnu.org/software/bc/manual/bc.html |
110 | //usage:#define bc_trivial_usage | 110 | //usage:#define bc_trivial_usage |
111 | //usage: "[-sqlw] FILE..." | 111 | //usage: "[-sqlw] [FILE...]" |
112 | //usage: | 112 | //usage: |
113 | //usage:#define bc_full_usage "\n" | 113 | //usage:#define bc_full_usage "\n" |
114 | //usage: "\nArbitrary precision calculator" | 114 | //usage: "\nArbitrary precision calculator" |
115 | //usage: "\n" | 115 | //usage: "\n" |
116 | ///////: "\n -i Interactive" - has no effect for now | 116 | ///////: "\n -i Interactive" - has no effect for now |
117 | //usage: "\n -q Quiet" | 117 | //usage: "\n -q Quiet" |
118 | //usage: "\n -l Load standard math library" | 118 | //usage: "\n -l Load standard library" |
119 | //usage: "\n -s Be POSIX compatible" | 119 | //usage: "\n -s Be POSIX compatible" |
120 | //usage: "\n -w Warn if extensions are used" | 120 | //usage: "\n -w Warn if extensions are used" |
121 | ///////: "\n -v Version" | 121 | ///////: "\n -v Version" |
diff --git a/miscutils/watchdog.c b/miscutils/watchdog.c index 44649cae6..d8e9c78f5 100644 --- a/miscutils/watchdog.c +++ b/miscutils/watchdog.c | |||
@@ -27,7 +27,7 @@ | |||
27 | //config: When enabled, the watchdog device is opened and then immediately | 27 | //config: When enabled, the watchdog device is opened and then immediately |
28 | //config: magic-closed, before being opened a second time. This may be necessary | 28 | //config: magic-closed, before being opened a second time. This may be necessary |
29 | //config: for some watchdog devices, but can cause spurious warnings in the | 29 | //config: for some watchdog devices, but can cause spurious warnings in the |
30 | //config: kernel log if the nowayout feature is enabled. Also, if this workaround | 30 | //config: kernel log if the nowayout feature is enabled. If this workaround |
31 | //config: is really needed for you machine to work properly, consider whether | 31 | //config: is really needed for you machine to work properly, consider whether |
32 | //config: it should be fixed in the kernel driver instead. Even when disabled, | 32 | //config: it should be fixed in the kernel driver instead. Even when disabled, |
33 | //config: the behaviour is easily emulated with a "printf 'V' > /dev/watchdog" | 33 | //config: the behaviour is easily emulated with a "printf 'V' > /dev/watchdog" |