maint: remove doubled words in comments, e.g., s/a a/a/
authorJim Meyering <meyering@redhat.com>
Sun, 10 Apr 2011 07:56:02 +0000 (09:56 +0200)
committerJim Meyering <meyering@redhat.com>
Sun, 10 Apr 2011 07:56:02 +0000 (09:56 +0200)
* lib/strptime.c (day_of_the_week): s/the the/the/
* tests/test-chown.h (test_chown): s/a a/a/

ChangeLog
lib/strptime.c
tests/test-chown.h

index c1eede5507b3ae3ad6d2c5ecaf25bf3ca843e09b..9bf2029e2b25e72843ea18ade30c6523f50e6835 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
 2011-04-10  Jim Meyering  <meyering@redhat.com>
 
+       maint: remove doubled words in comments, e.g., s/a a/a/
+       * lib/strptime.c (day_of_the_week): s/the the/the/
+       * tests/test-chown.h (test_chown): s/a a/a/
+
        test-chown.h: correct a cast
        * tests/test-chown.h (test_chown): Cast -1 to gid_t (not uid_t)
        when the destination is a stat.st_gid.
index 9e4394b883db6d769dc6e7dc16176fa702c4a470..6cf44bce424e44cdd117812c897f3e2790236e8c 100644 (file)
@@ -200,7 +200,7 @@ static void
 day_of_the_week (struct tm *tm)
 {
   /* We know that January 1st 1970 was a Thursday (= 4).  Compute the
-     the difference between this data in the one on TM and so determine
+     difference between this data in the one on TM and so determine
      the weekday.  */
   int corr_year = 1900 + tm->tm_year - (tm->tm_mon < 2);
   int wday = (-473
index c99ffc1d055eed6118481b46afd7ae70f2157f9a..85cbb5afc930d48a39624351c76de3b90b20990d 100644 (file)
@@ -38,7 +38,7 @@ test_chown (int (*func) (char const *, uid_t, gid_t), bool print)
   int result;
 
   /* Solaris 8 is interesting - if the current process belongs to
-     multiple groups, the current directory is owned by a group that
+     multiple groups, the current directory is owned by a group that
      the current process belongs to but different than getegid(), and
      the current directory does not have the S_ISGID bit, then regular
      files created in the directory belong to the directory's group,