summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2023-02-02 15:07:36 -0800
committerPaul Eggert <eggert@cs.ucla.edu>2023-02-02 15:12:41 -0800
commite67c9ecda471010c85ea4d62fb663d853ae56954 (patch)
treeb56f4d8399b0bc05165cc7525511c2eab8fe3314 /lib
parenta7e05c064df7bd56815aa0405e99bc6326a63a7f (diff)
downloadautoconf-e67c9ecda471010c85ea4d62fb663d853ae56954.tar.gz
make fetch
Diffstat (limited to 'lib')
-rw-r--r--lib/Autom4te/FileUtils.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Autom4te/FileUtils.pm b/lib/Autom4te/FileUtils.pm
index 8f7e351a..ab58b9de 100644
--- a/lib/Autom4te/FileUtils.pm
+++ b/lib/Autom4te/FileUtils.pm
@@ -120,9 +120,9 @@ sub mtime ($)
or fatal "cannot stat $file: $!";
# Unfortunately Time::HiRes converts timestamps to floating-point, and the
- # rounding error can be several nanoseconds for circa-2021 timestamps.
- # Perhaps some day Perl will support accurate file timestamps. For now, do
- # the best we can without going outside Perl.
+ # rounding error can be hundreds of nanoseconds for circa-2023 timestamps.
+ # Perhaps some day Perl will support accurate file timestamps.
+ # For now, do the best we can without going outside Perl.
return $mtime;
}