This commit is contained in:
Ilya Kantor 2019-04-22 17:52:49 +03:00
parent 585b77dbb9
commit 203b8f9f07
5 changed files with 10 additions and 10 deletions

View file

@ -39,7 +39,7 @@ Here's the full code to get response and log the progress, more explanations fol
```js run async
// Step 1: start the fetch and obtain a reader
let response = await fetch('https://api.github.com/repos/iliakan/javascript-tutorial-en/commits?per_page=100');
let response = await fetch('https://api.github.com/repos/javascript-tutorial/en.javascript.info/commits?per_page=100');
const reader = response.body.getReader();