From 86b49993dc75132859970fa126736f0434bf4485 Mon Sep 17 00:00:00 2001 From: "Tianzhen Lin (Tangent)" Date: Mon, 22 May 2023 13:16:46 -0400 Subject: [PATCH] doc: Fix typo in 1.34.0 release notes (#23188) Fix a typo found in 1.34.0 release notes Signed-off-by: Tianzhen Lin (Tangent) --- docs/src/release-notes-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index f058cd5a09..ea4dfbad29 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -15,7 +15,7 @@ import LiteYouTube from '@site/src/components/LiteYouTube'; * New property [`property: TestProject.teardown`] to specify a project that needs to run after this and all dependent projects have finished. Teardown is useful to cleanup any resources acquired by this project. - A commong pattern would be a `setup` dependency with a corresponding `teardown`: + A common pattern would be a `setup` dependency with a corresponding `teardown`: ```js title="playwright.config.ts" import { defineConfig } from '@playwright/test';