Skip to content

Commit abe4ac9

Browse files
authored
Typo fix (#289)
* Typo fix * Update faq.md
1 parent 948c48e commit abe4ac9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/faq.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ requirements:
5858
5959
## Rename an output file
6060
61-
This example shows how you can change the name an output file
61+
This example shows how you can change the name of an output file
6262
from the default name given to it by a tool:
6363
6464
```yaml
@@ -191,7 +191,7 @@ inputs:
191191
<a name="enuminputs"></a>
192192
## Enum Inputs ⚜️
193193

194-
For commandline flags that require a specific input as the argument an enum type can be declared in CWL. **Specifying null here is known as long form style. It does the same thing as the question mark on the other inputs.**
194+
For command-line flags that require a specific input as the argument, an enum type can be declared in CWL. **Specifying null here is known as long form style. It does the same thing as the question mark on the other inputs.**
195195

196196
```yaml
197197
Format:
@@ -211,7 +211,7 @@ Format:
211211
<a name="recordinputs"></a>
212212
## Record Inputs 📀
213213

214-
For commandline flags that are either **mutually exclusive** or **dependent** a special record type can be defined. You can also specify null here to create optional inputs.
214+
For command-line flags that are either **mutually exclusive** or **dependent**, a special record type can be defined. You can also specify null here to create optional inputs.
215215

216216
```yaml
217217
#Using record inputs to create mutually exclusive inputs
@@ -304,7 +304,7 @@ input:
304304

305305
`cwltool` does not allow some characters in filenames by default.
306306

307-
For example, the filename is `a space is here.txt` includes 3 space characters.
307+
For example, the filename `a space is here.txt` includes 3 space characters.
308308

309309
```console
310310
ERROR Workflow error, try again with --debug for more information:
@@ -364,7 +364,7 @@ inputs:
364364
```
365365

366366

367-
Fix this error is change `-` (hyphen) to `_` (underscore)
367+
To fix this error, change `-` (hyphen) to `_` (underscore)
368368

369369
```cwl
370370
valueFrom: $(inputs.sample_input)
@@ -377,7 +377,7 @@ inputs:
377377
# ^ changed here
378378
```
379379

380-
If is not possible to change the input identifier, then you can use an alternative CWL Parameter Reference syntax:
380+
If it is not possible to change the input identifier, then you can use an alternative CWL Parameter Reference syntax:
381381

382382
```cwl
383383
valueFrom: $(inputs["sample-input"])

0 commit comments

Comments
 (0)