summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1999-12-19 15:21:19 +0000
committerJim Meyering <jim@meyering.net>1999-12-19 15:21:19 +0000
commitc077ecf83c90a18597c0b900e494a4c7a617eaa1 (patch)
tree63497ba605724938d89647046f5b493682084263 /src
parent50075bf532f6087018d2710ce8e72178532afd0b (diff)
downloadcoreutils-c077ecf83c90a18597c0b900e494a4c7a617eaa1.tar.xz
tweak comment
Diffstat (limited to 'src')
-rw-r--r--src/sleep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sleep.c b/src/sleep.c
index 2122f3f1e..583413320 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -149,7 +149,7 @@ main (int argc, char **argv)
|| s < 0
/* S must fit in a time_t. */
|| s > TIME_T_MAX
- /* No extra chars after the number and an optional s,m,h,d char. */
+ /* No extra chars after the number and an optional s,m,h,d char. */
|| (*p && *(p+1))
/* Check any suffix char and update S based on the suffix. */
|| apply_suffix (&s, *p)