From 0b6cfc9b1e30ddc56fc3b4b5c3c1cf22efb35e3d Mon Sep 17 00:00:00 2001 From: Kenny John Jacob Date: Sat, 31 Oct 2020 14:44:00 +0530 Subject: [PATCH] Update article.md --- 5-network/04-fetch-abort/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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();