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