diff options
| -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 |
