diff options
author | Mathieu Lirzin <mthl@gnu.org> | 2018-03-26 21:59:58 +0200 |
---|---|---|
committer | Mathieu Lirzin <mthl@gnu.org> | 2018-03-27 03:13:06 +0200 |
commit | c263834da9aa7c45050b015c11109e7f16653ea1 (patch) | |
tree | 1af62811ac67093cd9228644ae1e41a78a308cf3 /src/mcron | |
parent | 95fb9140257ec83bc7ac830fe9a10b802def131e (diff) | |
download | mcron-c263834da9aa7c45050b015c11109e7f16653ea1.tar.gz mcron-c263834da9aa7c45050b015c11109e7f16653ea1.tar.bz2 mcron-c263834da9aa7c45050b015c11109e7f16653ea1.zip |
job-specifier: Fix typo "implement" => "implementation"
* src/mcron/job-specifier.scm (%find-best-next): Fix typo.
Diffstat (limited to 'src/mcron')
-rw-r--r-- | src/mcron/job-specifier.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mcron/job-specifier.scm b/src/mcron/job-specifier.scm index d3d3a2a..cbfa2df 100644 --- a/src/mcron/job-specifier.scm +++ b/src/mcron/job-specifier.scm @@ -61,7 +61,8 @@ go into the list. For example, (range 1 6 2) returns '(1 3 5)." ;; element larger than the CURRENT value. If an example of the latter ;; cannot be found, +INF.0 will be returned. (define (exact-min a b) - ;; An implement of 'min' which preserves the exactness its arguments. + ;; A binary implementation of 'min' which preserves the exactness of its + ;; arguments. (if (< a b) a b)) (let loop ((smallest (inf)) (closest+ (inf)) (lst next-list)) |