Skip to content

Commit c93e12f

Browse files
committed
avoid things that look like HTML tags
1 parent d0e191c commit c93e12f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/introduction/prerequisites.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ rest of the file.
141141
The *shebang* is the two-character sequence `#!` at the beginning of a
142142
script. When the script is executable, the operating system will execute
143143
the script using the executable specified after the shebang. It is
144-
considered a good practice to use `/usr/bin/env <executable>` rather than using a hard-coded location, since `/usr/bin/env <executable>`
145-
looks for the `<executable>` program in the system `PATH`,
144+
considered a good practice to use `/usr/bin/env [executable]` rather than using a hard-coded location, since `/usr/bin/env [executable]`
145+
looks for the `[executable]` program in the system `PATH`,
146146
```
147147

148148
## Text Editor

src/introduction/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ of software and libraries used for following the rest of this user guide.
5151
## Running "Hello World"
5252

5353
The usage of the `cwltool` command-line executable is basically
54-
`cwltool [OPTIONS] <CWL_DOCUMENT> [INPUTS_OBJECT]`. You can run the
54+
`cwltool [OPTIONS] [CWL_DOCUMENT] [INPUTS_OBJECT]`. You can run the
5555
`hello_world.cwl` workflow without specifying any option:
5656

5757
```{runcmd} cwltool hello_world.cwl

0 commit comments

Comments
 (0)