diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | README | 4 | ||||
-rw-r--r-- | docs/unicode.txt | 2 | ||||
-rw-r--r-- | miscutils/nandwrite.c | 2 | ||||
-rw-r--r-- | networking/dnsd.c | 2 | ||||
-rw-r--r-- | util-linux/lspci.c | 2 |
6 files changed, 7 insertions, 7 deletions
@@ -97,7 +97,7 @@ first argument to determine which applet to behave as, for example | |||
97 | "./busybox cat LICENSE". (Running the busybox applet with no arguments gives | 97 | "./busybox cat LICENSE". (Running the busybox applet with no arguments gives |
98 | a list of all enabled applets.) The standalone shell can also call busybox | 98 | a list of all enabled applets.) The standalone shell can also call busybox |
99 | applets without links to busybox under other names in the filesystem. You can | 99 | applets without links to busybox under other names in the filesystem. You can |
100 | also configure a standaone install capability into the busybox base applet, | 100 | also configure a standalone install capability into the busybox base applet, |
101 | and then install such links at runtime with one of "busybox --install" (for | 101 | and then install such links at runtime with one of "busybox --install" (for |
102 | hardlinks) or "busybox --install -s" (for symlinks). | 102 | hardlinks) or "busybox --install -s" (for symlinks). |
103 | 103 | ||
@@ -44,7 +44,7 @@ Using busybox: | |||
44 | run (I.E. "./busybox ls -l /proc"). | 44 | run (I.E. "./busybox ls -l /proc"). |
45 | 45 | ||
46 | The "standalone shell" mode is an easy way to try out busybox; this is a | 46 | The "standalone shell" mode is an easy way to try out busybox; this is a |
47 | command shell that calls the builtin applets without needing them to be | 47 | command shell that calls the built-in applets without needing them to be |
48 | installed in the path. (Note that this requires /proc to be mounted, if | 48 | installed in the path. (Note that this requires /proc to be mounted, if |
49 | testing from a boot floppy or in a chroot environment.) | 49 | testing from a boot floppy or in a chroot environment.) |
50 | 50 | ||
@@ -169,7 +169,7 @@ Portability: | |||
169 | MacOS X, Solaris, Cygwin, or the BSD Fork Du Jour). This generally involves | 169 | MacOS X, Solaris, Cygwin, or the BSD Fork Du Jour). This generally involves |
170 | a different kernel and a different C library at the same time. While it | 170 | a different kernel and a different C library at the same time. While it |
171 | should be possible to port the majority of the code to work in one of | 171 | should be possible to port the majority of the code to work in one of |
172 | these environments, don't be suprised if it doesn't work out of the box. If | 172 | these environments, don't be surprised if it doesn't work out of the box. If |
173 | you're into that sort of thing, start small (selecting just a few applets) | 173 | you're into that sort of thing, start small (selecting just a few applets) |
174 | and work your way up. | 174 | and work your way up. |
175 | 175 | ||
diff --git a/docs/unicode.txt b/docs/unicode.txt index 32df24dc8..9c159ce2a 100644 --- a/docs/unicode.txt +++ b/docs/unicode.txt | |||
@@ -29,7 +29,7 @@ But we also need to handle the following problematic moments: | |||
29 | Editors (vi, ed) | 29 | Editors (vi, ed) |
30 | 30 | ||
31 | This case is a bit similar to "shell input", but unlike shell, | 31 | This case is a bit similar to "shell input", but unlike shell, |
32 | editors may encounder many more unexpected unicode sequences | 32 | editors may encounter many more unexpected unicode sequences |
33 | (try to load a random binary file...), and they need to preserve | 33 | (try to load a random binary file...), and they need to preserve |
34 | them, unlike shell which can afford to drop bogus input. | 34 | them, unlike shell which can afford to drop bogus input. |
35 | 35 | ||
diff --git a/miscutils/nandwrite.c b/miscutils/nandwrite.c index 768aed116..562a34278 100644 --- a/miscutils/nandwrite.c +++ b/miscutils/nandwrite.c | |||
@@ -38,7 +38,7 @@ | |||
38 | //usage:#define nanddump_trivial_usage | 38 | //usage:#define nanddump_trivial_usage |
39 | //usage: "[-o] [-b] [-s ADDR] [-f FILE] MTD_DEVICE" | 39 | //usage: "[-o] [-b] [-s ADDR] [-f FILE] MTD_DEVICE" |
40 | //usage:#define nanddump_full_usage "\n\n" | 40 | //usage:#define nanddump_full_usage "\n\n" |
41 | //usage: "Dump the sepcified MTD device\n" | 41 | //usage: "Dump the specified MTD device\n" |
42 | //usage: "\n -o Omit oob data" | 42 | //usage: "\n -o Omit oob data" |
43 | //usage: "\n -b Omit bad block from the dump" | 43 | //usage: "\n -b Omit bad block from the dump" |
44 | //usage: "\n -s ADDR Start address" | 44 | //usage: "\n -s ADDR Start address" |
diff --git a/networking/dnsd.c b/networking/dnsd.c index d80306d3d..fe98400f7 100644 --- a/networking/dnsd.c +++ b/networking/dnsd.c | |||
@@ -30,7 +30,7 @@ | |||
30 | //usage: "\n -s Send successful replies only. Use this if you want" | 30 | //usage: "\n -s Send successful replies only. Use this if you want" |
31 | //usage: "\n to use /etc/resolv.conf with two nameserver lines:" | 31 | //usage: "\n to use /etc/resolv.conf with two nameserver lines:" |
32 | //usage: "\n nameserver DNSD_SERVER" | 32 | //usage: "\n nameserver DNSD_SERVER" |
33 | //usage: "\n nameserver NORNAL_DNS_SERVER" | 33 | //usage: "\n nameserver NORMAL_DNS_SERVER" |
34 | 34 | ||
35 | #include "libbb.h" | 35 | #include "libbb.h" |
36 | #include <syslog.h> | 36 | #include <syslog.h> |
diff --git a/util-linux/lspci.c b/util-linux/lspci.c index f59aec8a5..5184858d1 100644 --- a/util-linux/lspci.c +++ b/util-linux/lspci.c | |||
@@ -12,7 +12,7 @@ | |||
12 | //usage:#define lspci_full_usage "\n\n" | 12 | //usage:#define lspci_full_usage "\n\n" |
13 | //usage: "List all PCI devices" | 13 | //usage: "List all PCI devices" |
14 | //usage: "\n" | 14 | //usage: "\n" |
15 | //usage: "\n -m Parseable output" | 15 | //usage: "\n -m Parsable output" |
16 | //usage: "\n -k Show driver" | 16 | //usage: "\n -k Show driver" |
17 | 17 | ||
18 | #include "libbb.h" | 18 | #include "libbb.h" |