aboutsummaryrefslogtreecommitdiffstats
path: root/tests/seq
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-08-28 12:42:23 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2023-08-28 14:06:43 -0700
commit2dddc87214503199a38beeb175cd42cbb43cdff1 (patch)
treeca6109cc31cb86e167a312a303b791aa303bcc43 /tests/seq
parenttest: omit unreachable code (diff)
downloadcoreutils-2dddc87214503199a38beeb175cd42cbb43cdff1.tar.gz
coreutils-2dddc87214503199a38beeb175cd42cbb43cdff1.zip
maint: spelling fixes, including author names
Most of this just affects commentary and documentations. The only significant behavior change is translating author names via proper_name_lite rather than proper_name_utf8, or not translating them at all. proper_name_lite is good enough for coreutils and avoids the bloat that had coreutils not using Gnulib proper_name. * bootstrap.conf (gnulib_modules): Use propername-lite instead of propername. (XGETTEXT_OPTIONS): Look for proper_name_lite instead of for proper_name_utf8. * cfg.mk (local-checks-to-skip): Remove sc_proper_name_utf8_requires_ICONV, since we no longer use proper_name_utf8. (old_NEWS_hash): Update. (sc_check-I18N-AUTHORS): Remove; no longer needed.
Diffstat (limited to 'tests/seq')
-rwxr-xr-xtests/seq/seq.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/seq/seq.pl b/tests/seq/seq.pl
index 2990fa57e..e7fc8ef12 100755
--- a/tests/seq/seq.pl
+++ b/tests/seq/seq.pl
@@ -72,7 +72,7 @@ my @Tests =
['eq-wid-6', qw(-w +1 2), {OUT => [qw(1 2)]}],
['eq-wid-7', qw(-w " .1" " .1"), {OUT => [qw(0.1)]}],
['eq-wid-8', qw(-w 9 0.5 10), {OUT => [qw(09.0 09.5 10.0)]}],
- # Prior to 8.21, these tests involving numbers in scentific notation
+ # Prior to 8.21, these tests involving numbers in scientific notation
# would fail with misalignment or wrong widths.
['eq-wid-9', qw(-w -1e-3 1), {OUT => [qw(-0.001 00.999)]}],
['eq-wid-10',qw(-w -1e-003 1), {OUT => [qw(-0.001 00.999)]}],