From 94668e650c3a86d778fb785714937c08a01a9eae Mon Sep 17 00:00:00 2001 From: Janice Niemeir Date: Thu, 18 Oct 2018 15:43:08 -0700 Subject: [PATCH] Fixed a capitalization typo in a heading --- docs/getting-started/8-watching-files.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting-started/8-watching-files.md b/docs/getting-started/8-watching-files.md index 7c9199edc..82a16b330 100644 --- a/docs/getting-started/8-watching-files.md +++ b/docs/getting-started/8-watching-files.md @@ -35,7 +35,7 @@ watch('src/*.css', css); watch('src/*.js', series(clean, javascript)); ``` -## Warning: Avoid synchronous +## Warning: avoid synchronous A watcher's task cannot be synchronous, like tasks registered into the task system. If you pass a sync task, the completion can't be determined and the task won't run again - it is assumed to still be running.