From 93b87d3efacaf9b23d0aa71ac1edca9bd2cb318b Mon Sep 17 00:00:00 2001 From: Ilya Kantor Date: Thu, 14 Mar 2019 18:55:12 +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 9b454718..a41530aa 100644 --- a/7-network/1-xmlhttprequest/article.md +++ b/7-network/1-xmlhttprequest/article.md @@ -27,7 +27,7 @@ To do the request, we need 3 steps: let xhr = new XMLHttpRequest(); // no arguments ``` -2. Initialize. +2. Initialize it. ```js xhr.open(method, URL, async, user, password) ```