From 567764131c03132350ebe74404ef19d68b23584e Mon Sep 17 00:00:00 2001 From: Steve Anderson Date: Mon, 24 Jun 2019 09:54:09 +0100 Subject: [PATCH] Documentation tidying * Change _Runny_ to _Running_ * A couple of tweaks to make the text flow better --- packages/documentation/docs/composition.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/documentation/docs/composition.md b/packages/documentation/docs/composition.md index 0ee34bd..8e330db 100644 --- a/packages/documentation/docs/composition.md +++ b/packages/documentation/docs/composition.md @@ -4,9 +4,9 @@ title: Composition of tasks sidebar_label: Composition of tasks --- -Once a project get to be a bit more complex, a build step might consist of multiple sub tasks. This can be achieved with composition. This is the main reason `just-task` is made. It simplifies the composition of tasks. +Once a project gets a bit more complex, a build step might consist of multiple subtasks. This can be achieved with composition. This is the main reason `just-task` is made. It simplifies the composition of tasks. -## Running tasks in a series +## Running tasks in series ```js const { task, series } = require('just-task'); @@ -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.