From efa480b37843ce3bea19b4a9a99298128ba5d1d0 Mon Sep 17 00:00:00 2001 From: Peter Miles Date: Wed, 17 Sep 2025 07:18:41 -0700 Subject: [PATCH] Update keeping-mocks-in-sync.mdx Just a small typo fix --- .../mswjs.io/src/content/docs/recipes/keeping-mocks-in-sync.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websites/mswjs.io/src/content/docs/recipes/keeping-mocks-in-sync.mdx b/websites/mswjs.io/src/content/docs/recipes/keeping-mocks-in-sync.mdx index 79c988f1..73888225 100644 --- a/websites/mswjs.io/src/content/docs/recipes/keeping-mocks-in-sync.mdx +++ b/websites/mswjs.io/src/content/docs/recipes/keeping-mocks-in-sync.mdx @@ -22,7 +22,7 @@ In the case of a GraphQL server, consider using [GraphQL Code Generator](https:/ In the case when there is no API specification available, you can record network behavior in the browser and store it in a `*.har` file. Then, it becomes a fixed source of truth you can use to generate handlers from. -In the example below we'are going to use a community-authored [`msw-webarchive`](https://github.com/Tapico/tapico-msw-webarchive) package to generate request handlers from an HAR file on runtime. +In the example below we are going to use a community-authored [`msw-webarchive`](https://github.com/Tapico/tapico-msw-webarchive) package to generate request handlers from an HAR file on runtime. ```js // mocks/browser.js