From 05af4e45b19111e21b879338310456ba9047244b Mon Sep 17 00:00:00 2001 From: Miles Rausch Date: Fri, 21 Jun 2019 15:53:43 -0500 Subject: [PATCH] Corrected possibly typo in Composition heading --- packages/documentation/docs/composition.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.