From 31bde05efacf77989970f3e69418b6df6e5f35d9 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Sat, 18 Jan 2020 10:25:40 +0100 Subject: [PATCH] Add missing word in comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sorry, but need to have it there … --- site-lisp/db-utils.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/site-lisp/db-utils.el b/site-lisp/db-utils.el index 7679934..7328a09 100644 --- a/site-lisp/db-utils.el +++ b/site-lisp/db-utils.el @@ -228,9 +228,9 @@ FORMAT-STRING defaults to some ISO 8601-like format." (calcFunc-hour unix-time) (calcFunc-minute unix-time) ;; `seconds' will be a floating point number, and we need to format - ;; it with a precision that is high enough; apparently, we need to - ;; truncate the number of seconds to nine digits, at least that is - ;; what has been done in the test example we use in the + ;; it with a precision that is high enough; apparently, we also need + ;; to truncate the number of seconds to nine digits, at least that + ;; is what has been done in the test example we use in the ;; corresponding regression test … (string-to-number (calc-eval '("trunc(second($), 9)" calc-internal-prec 30)