]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: misc tweaks to recent changes
authorPádraig Brady <P@draigBrady.com>
Sun, 6 Nov 2016 21:34:12 +0000 (21:34 +0000)
committerPádraig Brady <P@draigBrady.com>
Mon, 7 Nov 2016 17:12:39 +0000 (17:12 +0000)
* doc/coreutils.texi(cut invocation): Give a more accurate description
of cut field handling limitations.
* tests/misc/stat-fmt.sh: Fix the test header to be more general.
* tests/tail-2/retry.sh: Spellings.

doc/coreutils.texi
tests/misc/stat-fmt.sh
tests/tail-2/retry.sh

index 597cf76f0cf3c9b7ca1337de17746f6ebece98fb..81101485c82255e9fda57a6d3ea02229b696f030 100644 (file)
@@ -5864,7 +5864,7 @@ line that contains no delimiter character, unless the
 @option{--only-delimited} (@option{-s}) option is specified.
 
 Note @command{awk} supports more sophisticated field processing,
-like reordering fields, and handling non fixed width fields.
+like reordering fields, and handling fields aligned with blank characters.
 By default @command{awk} uses (and discards) runs of blank characters
 to separate fields, and ignores leading and trailing blanks.
 @example
index 1245ddb9e9ebcb385966277ac59ee97fae5d4bfb..45a276d136f2c903b9d3d501830e6b843a7fa6ed 100755 (executable)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# ensure that stat properly handles a format string ending with %
+# stat --format tests
 
 # Copyright (C) 2003-2016 Free Software Foundation, Inc.
 
@@ -27,6 +27,7 @@ for i in $(seq 50); do
   test "$out" = "$fmt" || fail=1
 done
 
+
 # ensure QUOTING_STYLE is honored by %N
 touch "'" || framework_failure_
 # Default since v8.25
index a4cff11e6734527b9f2ff568cc39cd60ea7384a7..b764aa7f1b091895cc3148b290b71f3905a9d1c1 100755 (executable)
@@ -134,7 +134,7 @@ grep -F 'cannot open' out        || { fail=1; cat out; }
 grep -F 'no files remaining' out || { fail=1; cat out; }
 
 # === Test:
-# Ensure that tail -F retries when the file is initally untailable.
+# Ensure that tail -F retries when the file is initially untailable.
 mkdir untailable
 timeout 10 \
   tail $mode $fastpoll -F untailable >out 2>&1 & pid=$!