diff options
Diffstat (limited to 'src')
-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)) |