Skip to content

Commit 1585ac0

Browse files
authored
1 parent cb51d0a commit 1585ac0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/faq.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,16 +191,16 @@ outputs: []
191191

192192
## How do I connect a solo value to an input that expects an array of that type?
193193

194-
Using [`MultipleInputFeatureRequirement`](https://www.commonwl.org/v1.0/Workflow.html#MultipleInputFeatureRequirement)
194+
Add a [`MultipleInputFeatureRequirement`](https://www.commonwl.org/v1.0/Workflow.html#MultipleInputFeatureRequirement)
195195
along with
196-
[`linkMerge: merge_nested`](https://www.commonwl.org/v1.0/Workflow.html#WorkflowStepInput)
196+
[`linkMerge: merge_nested`](https://www.commonwl.org/v1.0/Workflow.html#WorkflowStepInput):
197197

198198
> merge_nested
199199
>
200200
> The input must be an array consisting of exactly one entry for each input link.
201201
> If "merge_nested" is specified with a single link, the value from the link must be wrapped in a single-item list.
202202

203-
Which means "create a list with exactly these sources as elements"
203+
Which means "create a list with exactly these sources as elements".
204204

205205
Or in other words: if the destination is of type `File[]` (an array of `File`s)
206206
and the source is a single `File` then add `MultipleInputFeatureRequirement` to the Workflow level `requirements`
@@ -424,7 +424,7 @@ inputs:
424424
```
425425

426426

427-
To fix this error, change `-` (hyphen) to `_` (underscore)
427+
To fix this error, change `-` (hyphen) to `_` (underscore):
428428

429429
```cwl
430430
valueFrom: $(inputs.sample_input)

src/introduction/prerequisites.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ CWL implementation.
8787
This is convenient for environments with multiple CWL runners.
8888

8989
The CWL community publishes a Python package with the name `cwlref-runner` that installs
90-
an alias for `cwltool` under the name `cwl-runner`
90+
an alias for `cwltool` under the name `cwl-runner`.
9191

9292
```{code-block} console
9393
:name: installing-cwlrunner-with-pip

0 commit comments

Comments
 (0)