Skip to content

fixed typos #316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/introduction/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ explanation in the [Implementations](basic-concepts.md#implementations) section.
## Operating System

We recommend using an up-to-date operating system. You can choose any
of the following options for your operating system:
of the following options as your operating system:

- Linux
- macOS
Expand Down Expand Up @@ -63,17 +63,17 @@ You can find the `cwl-runner` source code [here](https://github.com/common-workf
Visit the `cwltool` [documentation](https://github.com/common-workflow-language/cwltool#install)
for other ways to install `cwltool` with `apt` and `conda`.
```
Let's use a simple CWl tool description `true.cwl` with `cwltool`.
Let's use a simple CWL tool description `true.cwl` with `cwltool`.

```{literalinclude} /_includes/cwl/true.cwl
:language: yaml
:caption: "`true.cwl`"
:name: true.cwl
```

The `cwltool` command has an option to validate CWL tool and workflow descriptionss. It will parse the
The `cwltool` command has an option to validate CWL tool and workflow descriptions. It will parse the
CWL document, look for syntax errors, and verify that the descriptions are compliant
with the CWL standards, without running it. To validate CWL workflows (or even a
with the CWL standards without running it. To validate CWL workflows (or even a
standalone command line tool description like above) pass the `--validate` option
to the `cwltool` command:

Expand Down