diff --git a/websites/mswjs.io/src/content/docs/recipes/streaming.mdx b/websites/mswjs.io/src/content/docs/recipes/streaming.mdx index 67bbaed3..dcd9d57d 100644 --- a/websites/mswjs.io/src/content/docs/recipes/streaming.mdx +++ b/websites/mswjs.io/src/content/docs/recipes/streaming.mdx @@ -49,7 +49,7 @@ export const handlers = [ Using the [`TransformStream`](https://developer.mozilla.org/en-US/docs/Web/API/TransformStream) API, we can describe more complex streaming scenarios. -In the example below, we will describe a video endpoint that establishes a readable stream from the original video resource and pipes it through a custom transform stream that inserts latency between each video stream chunk. This is handy when we wish to test how our UI handles lantecy during streams. +In the example below, we will describe a video endpoint that establishes a readable stream from the original video resource and pipes it through a custom transform stream that inserts latency between each video stream chunk. This is handy when we wish to test how our UI handles latency during streams. ```js {14-20,25} import { http, HttpResponse, delay } from 'msw'