From: Jim Meyering Date: Thu, 6 Jan 2000 08:29:10 +0000 (+0000) Subject: fix typo in comment X-Git-Tag: FILEUTILS-4_0n~61 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=eee26242bbd206084431e4642bc400cfffa5ceae;p=thirdparty%2Fcoreutils.git fix typo in comment --- diff --git a/src/sleep.c b/src/sleep.c index 21593c4e18..5d4596414f 100644 --- a/src/sleep.c +++ b/src/sleep.c @@ -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. */