]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
Tweak a comment.
authorWayne Davison <wayne@opencoder.net>
Mon, 27 Sep 2021 00:23:33 +0000 (17:23 -0700)
committerWayne Davison <wayne@opencoder.net>
Mon, 27 Sep 2021 00:23:33 +0000 (17:23 -0700)
util1.c

diff --git a/util1.c b/util1.c
index 0daf9b04a764bcf2ef1e5ca8b444a2300e4b2984..ef78a82d454c13320c05f04fa1fff27fba3635b0 100644 (file)
--- 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;