From a38cb9545cbdcf1014eeaad64be939d57769dba2 Mon Sep 17 00:00:00 2001 From: Phani Teja Komaravolu Date: Tue, 16 Apr 2019 11:43:59 -0400 Subject: [PATCH] Update composition.md --- 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.