From 2acf50b12b7191d46c478781a9dbc854e2f1029f Mon Sep 17 00:00:00 2001 From: Yam C Borodetsky Date: Tue, 14 Oct 2025 14:28:38 +0300 Subject: [PATCH] Fix typos and formatting issues in Playwright guide Fix code block formatting issues in the Playwright guide, like inconsistent tabbing and missing commas. Without this fix, not only is the doc formatted inconsistently, but some code blocks straight up don't work. --- docs/site/content/docs/guides/tools/playwright.mdx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/site/content/docs/guides/tools/playwright.mdx b/docs/site/content/docs/guides/tools/playwright.mdx index 1e6fe6d33aed5..95c374e4bfaf5 100644 --- a/docs/site/content/docs/guides/tools/playwright.mdx +++ b/docs/site/content/docs/guides/tools/playwright.mdx @@ -80,7 +80,7 @@ This relationship can be expressed in `turbo.json` and the end-to-end suite's `p ```json title="./tooling/playwright-web/package.json" { - "name": "@repo/playwright-web" + "name": "@repo/playwright-web", "dependencies": { "web": "workspace:*" // [!code highlight] } @@ -124,10 +124,10 @@ You can also create a common package for shared utilities that you need in your ```json title="./packages/playwright-utilities/package.json" { - "name": "@repo/playwright-utilities", - "peerDependencies": { - "playwright": "*" -} + "name": "@repo/playwright-utilities", + "peerDependencies": { + "playwright": "*" + } } ``` @@ -139,7 +139,7 @@ You can also create a common package for shared utilities that you need in your "name": "@repo/playwright-utilities", "peerDependencies": { "playwright": "workspace:*" -} + } } ```