From df252509b52acd712300b3b5d00bf7aedf0dbd40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anderson=20Samir=20Corr=C3=AAa=20Paz=20de=20Camargo?= Date: Sun, 10 Jan 2021 20:13:16 -0300 Subject: [PATCH] Docs: Fix typo in task docs (#2524) --- docs/api/task.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/task.md b/docs/api/task.md index 21aaec404..de3c54621 100644 --- a/docs/api/task.md +++ b/docs/api/task.md @@ -61,7 +61,7 @@ Since any registered task can be run from the command line, avoid using spaces i | parameter | type | note | |:--------------:|:------:|-------| -| taskName | string | An alias for the task function within the the task system. Not needed when using named functions for `taskFunction`. | +| taskName | string | An alias for the task function within the task system. Not needed when using named functions for `taskFunction`. | | taskFunction
**(required)** | function | A [task function][task-concepts] or composed task - generated by `series()` and `parallel()`. Ideally a named function. [Task metadata][task-metadata-section] can be attached to provide extra information to the command line. | ### Returns