s/othervise/otherwise/g
authorDenis Vlasenko <vda.linux@googlemail.com>
Wed, 23 Jul 2008 08:41:08 +0000 (08:41 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Wed, 23 Jul 2008 08:41:08 +0000 (08:41 -0000)
include/usage.h
include/xatonum.h
libbb/bb_strtonum.c

index e1e234367320be2a0086e869d1881115a5b1f68a..9a73d0890db74342b349f27a0f17ac2d7ffc8a93 100644 (file)
 #define lpd_full_usage "\n\n" \
        "SPOOLDIR must contain (symlinks to) device nodes or directories" \
      "\nwith names matching print queue names. In the first case, jobs are" \
-     "\nsent directly to the device. Othervise each job is stored in queue" \
+     "\nsent directly to the device. Otherwise each job is stored in queue" \
      "\ndirectory and HELPER program is called. Name of file to print" \
      "\nis passed in $DATAFILE variable." \
      "\nExample:" \
index 02aacc0d5a828a5527fec73cd1476cfbb0890e3c..86a3472d96812e64969cacaf19aaac1fa76e54cf 100644 (file)
@@ -112,7 +112,7 @@ static ALWAYS_INLINE uint32_t xatou32(const char *numstr)
 /* Non-aborting kind of convertors: bb_strto[u][l]l */
 
 /* On exit: errno = 0 only if there was non-empty, '\0' terminated value
- * errno = EINVAL if value was not '\0' terminated, but othervise ok
+ * errno = EINVAL if value was not '\0' terminated, but otherwise ok
  *    Return value is still valid, caller should just check whether end[0]
  *    is a valid terminating char for particular case. OTOH, if caller
  *    requires '\0' terminated input, [s]he can just check errno == 0.
index 4a0da0ae0e88e30c9e4a545251ae1a5a7c1cb7c9..87cd744a72765cd277c10f3f21d4859ebcfc3f6b 100644 (file)
@@ -10,7 +10,7 @@
 #include "libbb.h"
 
 /* On exit: errno = 0 only if there was non-empty, '\0' terminated value
- * errno = EINVAL if value was not '\0' terminated, but othervise ok
+ * errno = EINVAL if value was not '\0' terminated, but otherwise ok
  *    Return value is still valid, caller should just check whether end[0]
  *    is a valid terminating char for particular case. OTOH, if caller
  *    requires '\0' terminated input, [s]he can just check errno == 0.