]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
fix typo in comment
authorJim Meyering <jim@meyering.net>
Thu, 6 Jan 2000 08:29:10 +0000 (08:29 +0000)
committerJim Meyering <jim@meyering.net>
Thu, 6 Jan 2000 08:29:10 +0000 (08:29 +0000)
src/sleep.c

index 21593c4e18e428820996a040585dbf852ce7d177..5d4596414f7347ce2c50ee40e1f69b6924370707 100644 (file)
@@ -251,7 +251,7 @@ main (int argc, char **argv)
   ts_sleep.tv_nsec = ns;
 
   /* Round up to the next whole number, if necessary, so that we
-     always sleep for at least the request amount of time.  */
+     always sleep for at least the requested amount of time.  */
   ts_sleep.tv_nsec += (ts_sleep.tv_nsec < ns);
 
   /* Normalize the interval length.  nanosleep requires this.  */