Skip to content

Commit a0932af

Browse files
authored
Correct typo
i before e except after c :D
1 parent 3716e99 commit a0932af

File tree

1 file changed

+2
-2
lines changed
  • pages/articles/HTTP/clients/how-to-create-a-HTTP-request

1 file changed

+2
-2
lines changed

pages/articles/HTTP/clients/how-to-create-a-HTTP-request/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ As an example, we are going to preform a GET request to [www.random.org/integers
1414
callback = function(response) {
1515
var str = '';
1616

17-
//another chunk of data has been recieved, so append it to `str`
17+
//another chunk of data has been received, so append it to `str`
1818
response.on('data', function (chunk) {
1919
str += chunk;
2020
});
2121

22-
//the whole response has been recieved, so we just print it out here
22+
//the whole response has been received, so we just print it out here
2323
response.on('end', function () {
2424
console.log(str);
2525
});

0 commit comments

Comments
 (0)