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 47bee307fa0d1..5cd3f9b78e50d 100644
--- a/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx
+++ b/docs/site/content/docs/crafting-your-repository/configuring-tasks.mdx
@@ -13,7 +13,7 @@ A task is a script that Turborepo runs. You can express relationships between ta
Turborepo will always parallelize any work that it can to ensure everything runs as fast as possible. This is faster than running tasks one at a time, and it's a part of what makes Turborepo so fast.
-For example, yarn workspaces run lint && yarn workspaces run test && yarn workspaces run build
would look like this:
+For example, yarn workspaces run lint && yarn workspaces run build && yarn workspaces run test
would look like this: