diff options
author | Jim Meyering <jim@meyering.net> | 2000-01-06 08:29:10 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-01-06 08:29:10 +0000 |
commit | eee26242bbd206084431e4642bc400cfffa5ceae (patch) | |
tree | 6659581e0b72dea2139ba8654034ebb408f0b5c6 /src | |
parent | 757861331e7e28a5cf1e4e439070a952ccba1177 (diff) | |
download | coreutils-eee26242bbd206084431e4642bc400cfffa5ceae.tar.xz |
fix typo in comment
Diffstat (limited to 'src')
-rw-r--r-- | src/sleep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sleep.c b/src/sleep.c index 21593c4e1..5d4596414 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. */ |