From 3d051d868313ee408614ae2c8ecc9b850b4b5f3d Mon Sep 17 00:00:00 2001 From: Janice Niemeir Date: Thu, 18 Oct 2018 16:55:34 -0700 Subject: [PATCH] Docs: Fixed a capitalization typo in a heading (#2242) --- 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.