From 99fde5748fece2b7676fb80b90f66ca980ad4781 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 12 Apr 2022 02:20:49 +0200 Subject: Fix comment on unval. --- module/hnh/util.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/hnh/util.scm b/module/hnh/util.scm index 3019b35b..c4282bf6 100644 --- a/module/hnh/util.scm +++ b/module/hnh/util.scm @@ -299,9 +299,9 @@ (zip (iota (length lst)) lst)) -;; Takes a procedure returning multiple values, and returns a function which +;; Takes a procedure returning multiple values, and returns a procedure which ;; takes the same arguments as the original procedure, but only returns one of -;; the procedures. Which procedure can be sent as an additional parameter. +;; the return values. Which value to return can be sent as an additional parameter. (define*-public (unval proc #:optional (n 0)) (lambda args (call-with-values (lambda () (apply proc args)) -- cgit v1.2.3