From d5b9b899a7f6123205d1bba775bca597aefa0fe6 Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 14 Mar 2019 18:55:46 +0300 Subject: [PATCH] fix --- 7-network/1-xmlhttprequest/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/7-network/1-xmlhttprequest/article.md b/7-network/1-xmlhttprequest/article.md index a41530aa..1063c16f 100644 --- a/7-network/1-xmlhttprequest/article.md +++ b/7-network/1-xmlhttprequest/article.md @@ -51,7 +51,7 @@ To do the request, we need 3 steps: Some request methods like `GET` do not have a body. And some of them like `POST` use `body` to send the data to the server. We'll see examples later. -4. Listen for response. +4. Listen to events for response. There are several events for that, but these two are the most widely used: - `load` -- when the result is ready, that includes HTTP errors like 404.