diff options
author | Jim Meyering <meyering@redhat.com> | 2012-05-29 17:36:10 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-05-31 09:37:46 +0200 |
commit | 58184f6861894d91dca98cf2572d97fe70316b9b (patch) | |
tree | 30f0ca0ca07ded474c7442018d3d3df35b91fbe7 /tests/misc | |
parent | 2ab72e3a4364a9dea2a086aa6adfdd02fca53b3d (diff) | |
download | coreutils-58184f6861894d91dca98cf2572d97fe70316b9b.tar.xz |
maint: fix typos in test comments and old ChangeLog files
Culprits identified and fixed automatically using these commands:
git ls-files|misspellings -f -|perl -nl \
-e '/^(.*?)\[(\d+)\]: (\w+) -> "(.*?)"$/ or next;' \
-e '($file,$n,$l,$r)=($1,$2,$3,$4); $q="'\''"; $r=~s/$q/$q\\$q$q/g;'\
-e 'print "sed -i $q${n}s!$l!$r!$q $file"' | bash
using http://github.com/lyda/misspell-check
* old/fileutils/ChangeLog: Fix typos.
* old/textutils/ChangeLog: Likewise.
* tests/misc/truncate-fail-diag: Likewise.
Diffstat (limited to 'tests/misc')
-rwxr-xr-x | tests/misc/truncate-fail-diag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/misc/truncate-fail-diag b/tests/misc/truncate-fail-diag index f9cdabf38..994ee0b8b 100755 --- a/tests/misc/truncate-fail-diag +++ b/tests/misc/truncate-fail-diag @@ -1,6 +1,6 @@ #!/bin/sh # make sure truncate gives reasonable diagnostics -# Note open() checks for trailing '/' before checking for existance +# Note open() checks for trailing '/' before checking for existence # open (".", O_CREAT & (O_WRONLY | O_RDWR), ...) -> EISDIR # open ("missing/", O_CREAT & (O_WRONLY | O_RDWR), ...) -> EISDIR # open ("missing/file", O_CREAT & (O_WRONLY | O_RDWR), ...) -> ENOENT |