From 113cb6c227de49b6655aa4990f4e04e9414c0dc8 Mon Sep 17 00:00:00 2001 From: Benji Date: Fri, 14 Jun 2024 11:46:31 +0000 Subject: [PATCH] Update Question 383 README.md minor fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 77de5514..27b18669 100644 --- a/README.md +++ b/README.md @@ -6916,7 +6916,7 @@ 1. Create an `AbortController` instance 2. Get the signal property of an instance and pass the signal as a fetch option for signal 3. Call the AbortController's abort property to cancel all fetches that use that signal - For example, let's pass the same signal to multiple fetch calls will cancel all requests with that signal, + For example, passing the same signal to multiple fetch calls will cancel all requests with that signal, ```javascript const controller = new AbortController();