From 3cc7f0ba4385e3f108c538e6e6965eefa4769f6c Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 26 Sep 2021 17:23:33 -0700 Subject: [PATCH] Tweak a comment. --- util1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util1.c b/util1.c index 0daf9b04..ef78a82d 100644 --- a/util1.c +++ b/util1.c @@ -1354,7 +1354,7 @@ int same_time(time_t f1_sec, unsigned long f1_nsec, time_t f2_sec, unsigned long return f1_sec == f2_sec; if (modify_window < 0) return f1_sec == f2_sec && f1_nsec == f2_nsec; - /* The nano seconds doesn't figure into these checks -- time windows don't care about that. */ + /* The nanoseconds do not figure into these checks -- time windows don't care about that. */ if (f2_sec > f1_sec) return f2_sec - f1_sec <= modify_window; return f1_sec - f2_sec <= modify_window; -- 2.47.2