summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2021-10-04 17:21:58 +0530
committerArun Isaac2021-10-06 15:00:20 +0530
commitdc2a4b0e1ca7d53c2d7bc5a76dc8f243ba1f59cb (patch)
treeb9608e35f242d21f68651c4ced70ad0d7abac07d
parent84fc6759f3ee52157b4c2cb4ec852c5cc8fcde4d (diff)
downloadccwl-dc2a4b0e1ca7d53c2d7bc5a76dc8f243ba1f59cb.tar.gz
ccwl-dc2a4b0e1ca7d53c2d7bc5a76dc8f243ba1f59cb.tar.lz
ccwl-dc2a4b0e1ca7d53c2d7bc5a76dc8f243ba1f59cb.zip
ccwl: Fix the docstring of workflow-steps.
Before this commit, the docstring of workflow-steps did not correctly describe its function. * ccwl/ccwl.scm (workflow-steps): Fix docstring.
-rw-r--r--ccwl/ccwl.scm6
1 files changed, 4 insertions, 2 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm
index c7c1f70..438f522 100644
--- a/ccwl/ccwl.scm
+++ b/ccwl/ccwl.scm
@@ -319,8 +319,10 @@ command is not defined, return #f."
(variable-ref var))))
(define (workflow-steps x input-keys)
- "Traverse ccwl source X and return list of steps. INPUT-KEYS is a
-list of supplied input <key> objects."
+ "Traverse ccwl source X and return two values---a list of output
+keys and a list of steps. INPUT-KEYS is a list of supplied input
+keys. Keys are represented by <key> objects, and steps are represented
+by <step> objects."
(syntax-case x (pipe tee)
;; pipe
((pipe expressions ...)