summaryrefslogtreecommitdiff
path: root/libc/include/bits/timespec.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/include/bits/timespec.h')
-rw-r--r--libc/include/bits/timespec.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/include/bits/timespec.h b/libc/include/bits/timespec.h
index 0497cfe1f..daad03f52 100644
--- a/libc/include/bits/timespec.h
+++ b/libc/include/bits/timespec.h
@@ -46,7 +46,7 @@
struct timespec {
/** Number of seconds. */
time_t tv_sec;
- /** Number of nanoseconds. Must be less than 1,000,000. */
+ /** Number of nanoseconds. Must be less than 1,000,000,000. */
long tv_nsec;
};
#endif