From 2b5488902ab37006ec71bb3a6052eb2319270ccf Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Thu, 11 Apr 2024 20:37:44 +0200 Subject: [PATCH] docs(mock): fix typo (#30346) Fixes https://github.com/microsoft/playwright/issues/30326 --- docs/src/mock.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/mock.md b/docs/src/mock.md index b3ad4c860f..bd0c4e5c54 100644 --- a/docs/src/mock.md +++ b/docs/src/mock.md @@ -109,7 +109,7 @@ Sometimes, it is essential to make an API request, but the response needs to be allow for reproducible testing. In that case, instead of mocking the request, one can perform the request and fulfill it with the modified response. -In the example below we intercept the call to the fruit API and add a new fruit called 'playwright', to the data. We then go to the url and assert that this data is there: +In the example below we intercept the call to the fruit API and add a new fruit called 'Loquat', to the data. We then go to the url and assert that this data is there: ```js