From 18438908926be55355e9398c3cae8a0eac5323c7 Mon Sep 17 00:00:00 2001 From: Fleeym <61891787+Fleeym@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:35:37 +0300 Subject: [PATCH] fix a typo again --- tutorials/fetch.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/fetch.md b/tutorials/fetch.md index 84cb83e..ad5e35e 100644 --- a/tutorials/fetch.md +++ b/tutorials/fetch.md @@ -55,7 +55,7 @@ auto task = req.post(url); ## Getting the response from our request -If you remember the [Tasks](/tutorials/tasks) tutorial, you probably also remember that Tasks have to listened to using the [Events](/tutorials/events) system. We can create an `EventListener` for our request and use it to get our response. +If you remember the [Tasks](/tutorials/tasks) tutorial, you probably also remember that Tasks have to be listened to using the [Events](/tutorials/events) system. We can create an `EventListener` for our request and use it to get our response. ```cpp class MyCoolClass {