From 7f174cbfb1c788a6f850dccdbd8aca116043208e Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sat, 29 Nov 2025 02:37:32 +0000 Subject: workflow: Clarify that optional-input? only returns a truthy value. optional-input? returns a truthy value, not #t itself. --- ravanan/workflow.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ravanan/workflow.scm b/ravanan/workflow.scm index f3b9968..cb64a3a 100644 --- a/ravanan/workflow.scm +++ b/ravanan/workflow.scm @@ -173,7 +173,7 @@ requirements and hints of the step." (subset-requirements step-hints))))))) (define (optional-input? input) - "Return @code{#t} if @var{input} is optional. Else, return @code{#f}." + "Return truthy value if @var{input} is optional. Else, return @code{#f}." ;; Inputs that either have a default or accept null values are optional. (or (assoc-ref input "default") (match-type 'null -- cgit 1.4.1