aboutsummaryrefslogtreecommitdiffstats
path: root/man2/timerfd_create.2
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2020-12-27 11:42:50 +0100
committerMichael Kerrisk <mtk.manpages@gmail.com>2020-12-27 12:32:44 +0100
commit46b20ca1bb0f338c6e8d805faab262ef32502d24 (patch)
treeb2b4d0a339920698166a8ba3323e4c6bac897cf4 /man2/timerfd_create.2
parentc6beb8a167044b025e9c95610773a5764ccff760 (diff)
downloadman-pages-46b20ca1bb0f338c6e8d805faab262ef32502d24.tar.gz
ioctl_ns.2, keyctl.2, memfd_create.2, pidfd_send_signal.2, poll.2, seccomp.2, signalfd.2, timerfd_create.2, unshare.2, dlinfo.3, duplocale.3, fopencookie.3, getgrouplist.3, getifaddrs.3, getprotoent_r.3, getservent_r.3, insque.3, printf.3, pthread_attr_init.3, pthread_cancel.3, pthread_create.3, pthread_mutexattr_setrobust.3, pthread_setaffinity_np.3, qsort.3, sem_wait.3, core.5, elf.5, aio.7, epoll.7, pkeys.7, system_data_types.7, unix.7: Use periods more consistently inside code comments
In general, complete sentences in free-standing comments should be terminated by periods. Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
Diffstat (limited to 'man2/timerfd_create.2')
-rw-r--r--man2/timerfd_create.22
1 files changed, 1 insertions, 1 deletions
diff --git a/man2/timerfd_create.2 b/man2/timerfd_create.2
index 80f280ce14..0fe734b615 100644
--- a/man2/timerfd_create.2
+++ b/man2/timerfd_create.2
@@ -677,7 +677,7 @@ main(int argc, char *argv[])
handle_error("clock_gettime");
/* Create a CLOCK_REALTIME absolute timer with initial
- expiration and interval as specified in command line */
+ expiration and interval as specified in command line. */
new_value.it_value.tv_sec = now.tv_sec + atoi(argv[1]);
new_value.it_value.tv_nsec = now.tv_nsec;