diff --git a/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx b/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx index 2b8673db4fbf8..54e1506a0426e 100644 --- a/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx +++ b/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx @@ -344,7 +344,7 @@ Some tasks should always be run no matter what, like a deployment script after a ### Dependent tasks that can be run in parallel -Some tasks can be run in parallel despite being dependent on other packages. An example of tasks that fit this description are linters, since a linter doesn't need to wait for outputs in dependencies to run successfully. +Some tasks can be run in parallel despite being dependent on other packages. An example of tasks that fit this description are type checkers, since a type checker doesn't need to wait for outputs in dependencies to run successfully. Because of this, you may be tempted to define your `check-types` task like this: