Merge "Fix timespec.h documentation"

This commit is contained in:
Tom Cherry 2019-08-13 15:56:06 +00:00 committed by Gerrit Code Review
commit 6864fc8d06

View file

@ -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