]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tweak comments
authorJim Meyering <jim@meyering.net>
Sun, 12 Jan 2003 18:16:31 +0000 (18:16 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 12 Jan 2003 18:16:31 +0000 (18:16 +0000)
lib/ftw.c

index b0236e7323de810b8baf55b9a48f80c31ff25315..29c72db1da8b796c09d04a3254d15095f4168154 100644 (file)
--- a/lib/ftw.c
+++ b/lib/ftw.c
@@ -129,7 +129,7 @@ struct ftw_data
   int flags;
 
   /* Conversion array for flag values.  It is the identity mapping for
-     `nftw' calls, otherwise it maps the values to those know by
+     `nftw' calls, otherwise it maps the values to those known by
      `ftw'.  */
   const int *cvt_arr;
 
@@ -145,9 +145,8 @@ struct ftw_data
 };
 
 
-/* Internally we use the FTW_* constants used for `nftw'.  When the
-   process called `ftw' we must reduce the flag to the known flags
-   for `ftw'.  */
+/* Internally we use the FTW_* constants used for `nftw'.  When invoked
+   as `ftw' map the flag to the subset of values used by `ftw'.  */
 static const int nftw_arr[] =
 {
   FTW_F, FTW_D, FTW_DNR, FTW_NS, FTW_SL, FTW_DP, FTW_SLN