]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
maint: fix some typos in comments
authorChuanGang Jiang <jiangchuanganghw@outlook.com>
Fri, 10 Feb 2023 15:41:33 +0000 (15:41 +0000)
committerPádraig Brady <P@draigBrady.com>
Fri, 10 Feb 2023 18:06:54 +0000 (18:06 +0000)
* NEWS: s/commmand/command/
* cfg.mk: Adjust old_NEWS_hash with `make update-NEWS-hash`.
* src/expand-common.c: s/specifed/specified/
* src/pr.c: s/e.g/e.g./
* tests/misc/comm.pl: s/ouput/output/
Fixes https://bugs.gnu.org/61405

NEWS
cfg.mk
src/expand-common.c
src/pr.c
tests/misc/comm.pl

diff --git a/NEWS b/NEWS
index 04088af70972f0422fe9d1901182545d7844e72c..3d0ede15014350ba1d4c7ba2cffd80183f36ff19 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2683,7 +2683,7 @@ GNU coreutils NEWS                                    -*- outline -*-
 
   rm -r --one-file-system works once again.
   The rewrite to make rm use fts introduced a regression whereby
-  a commmand of the above form would fail for all subdirectories.
+  a command of the above form would fail for all subdirectories.
   [bug introduced in coreutils-8.0]
 
   stat -f recognizes more file system types: k-afs, fuseblk, gfs/gfs2, ocfs2,
diff --git a/cfg.mk b/cfg.mk
index 18a2453a78c40fc1076f22f8acf1e2726d68ae9c..14f999bc9d3714eccc82c4dccad4849d170891b6 100644 (file)
--- a/cfg.mk
+++ b/cfg.mk
@@ -49,7 +49,7 @@ export VERBOSE = yes
 # 4914152 9e
 export XZ_OPT = -8e
 
-old_NEWS_hash = 49269d8d99f4888a4e955d28cda50091
+old_NEWS_hash = ffba6793067438bae569f42acb4c5ab9
 
 # Add an exemption for sc_makefile_at_at_check.
 _makefile_at_at_check_exceptions = ' && !/^cu_install_prog/ && !/dynamic-dep/'
index 36db6aad92690d842ae625c621b8587496e228eb..4969e2e078be852f7f53941f7da4aa251ce9504e 100644 (file)
@@ -34,7 +34,7 @@ bool convert_entire_line = false;
 /* If nonzero, the size of all tab stops.  If zero, use 'tab_list' instead.  */
 static uintmax_t tab_size = 0;
 
-/* If nonzero, the size of all tab stops after the last specifed.  */
+/* If nonzero, the size of all tab stops after the last specified.  */
 static uintmax_t extend_size = 0;
 
 /* If nonzero, an increment for additional tab stops after the last specified.*/
index ec624bffd6e60cbc6b7f1d3a842c0e43b3243eb9..28a6952421369818df4379749a94a7f3b97d7cd1 100644 (file)
--- a/src/pr.c
+++ b/src/pr.c
@@ -2626,7 +2626,7 @@ print_stored (COLUMN *p)
    sequences or control prefixes.
 
    Note: the width of a clump is not necessarily equal to the number of
-   characters in clump_buff.  (e.g, the width of '\b' is -1, while the
+   characters in clump_buff.  (e.g., the width of '\b' is -1, while the
    number of characters is 1.) */
 
 static int
index 5de60ac33b6722b43aa85cff36ea26df6f7c4018..aaaf46522d40a108bee13504bb23cc67aeee374b 100755 (executable)
@@ -24,7 +24,7 @@ use strict;
 
 my $prog = 'comm';
 
-# Turn off localization of executable's ouput.
+# Turn off localization of executable's output.
 @ENV{qw(LANGUAGE LANG LC_ALL)} = ('C') x 3;
 
 my @inputs = ({IN=>{a=>"1\n3\n3\n3"}}, {IN=>{b=>"2\n2\n3\n3\n3"}});