diff options
| author | Arun Isaac | 2025-11-29 02:37:32 +0000 |
|---|---|---|
| committer | Arun Isaac | 2025-11-29 02:38:35 +0000 |
| commit | 7f174cbfb1c788a6f850dccdbd8aca116043208e (patch) | |
| tree | d9192b1f941fa30b11b15501233e769d86bf0c68 | |
| parent | f5ce804ed0f1aaf8498177133424c10be83108d2 (diff) | |
| download | ravanan-7f174cbfb1c788a6f850dccdbd8aca116043208e.tar.gz ravanan-7f174cbfb1c788a6f850dccdbd8aca116043208e.tar.lz ravanan-7f174cbfb1c788a6f850dccdbd8aca116043208e.zip | |
workflow: Clarify that optional-input? only returns a truthy value.
optional-input? returns a truthy value, not #t itself.
| -rw-r--r-- | ravanan/workflow.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
