Skip to content
This repository has been archived by the owner on Mar 7, 2020. It is now read-only.

Update composition.md #2

Open
wants to merge 1 commit into
base: master
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
2 changes: 1 addition & 1 deletion packages/documentation/docs/composition.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ task('build', series('clean', 'babel'));

When you trigger `just build`, the `clean` task will run and complete before `babel` task is run.

## Runny tasks in parallel
## Running tasks in parallel

To take advantage of multi-core CPUs on our machines, we can run several tasks in parallel. Simply use the `parallel()` function.

Expand Down