From 3f8ab2426d305af6da470f29b5ce28c39784aa93 Mon Sep 17 00:00:00 2001 From: Pawel Date: Fri, 29 Jan 2021 12:32:39 +0100 Subject: [PATCH] Fix typo in "liseners" on line 21 --- 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 14e8d13cbd..af66c37cc0 100644 --- a/5-network/04-fetch-abort/article.md +++ b/5-network/04-fetch-abort/article.md @@ -18,7 +18,7 @@ let controller = new AbortController(); A controller is an extremely simple object. - It has a single method `abort()`, -- And a single property `signal` that allows to set event liseners on it. +- And a single property `signal` that allows to set event listeners on it. When `abort()` is called: - `controller.signal` emits the `"abort"` event.