diff --git a/5-network/04-fetch-abort/article.md b/5-network/04-fetch-abort/article.md index 6548f81d27..9efadd0ee5 100644 --- a/5-network/04-fetch-abort/article.md +++ b/5-network/04-fetch-abort/article.md @@ -65,7 +65,7 @@ fetch(url, { The `fetch` method knows how to work with `AbortController`. It will listen to `abort` events on `signal`. -Now, to to abort, call `controller.abort()`: +Now, to abort, call `controller.abort()`: ```js controller.abort();