From 94495c32535a073702427ae4cdc3e1dfd6e582c3 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 20 Jan 2022 13:36:41 +0100 Subject: [PATCH] docs(python): fix typo in release notes (#11507) --- docs/src/release-notes-python.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/release-notes-python.md b/docs/src/release-notes-python.md index b065464a18..879ee7be71 100644 --- a/docs/src/release-notes-python.md +++ b/docs/src/release-notes-python.md @@ -66,11 +66,11 @@ Read more in [our documentation](./api/class-playwrightassertions). - [`method: Locator.dragTo`] - Each locator can now be optionally filtered by the text it contains: ```python async - await page.locator("li", has_text="my item")).locator("button").click() + await page.locator("li", has_text="my item").locator("button").click() ``` ```python sync - page.locator("li", has_text="my item")).locator("button").click() + page.locator("li", has_text="my item").locator("button").click() ``` Read more in [locator documentation](./api/class-locator#locator-locator-option-has-text)