diff --git a/packages/documentation/docs/composition.md b/packages/documentation/docs/composition.md index 0ee34bd..d2b8d29 100644 --- a/packages/documentation/docs/composition.md +++ b/packages/documentation/docs/composition.md @@ -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.