We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b457de1 commit 5982afbCopy full SHA for 5982afb
1-js/11-async/03-promise-chaining/article.md
@@ -283,14 +283,14 @@ fetch('/article/promise-chaining/user.json')
283
284
Now let's do something with the loaded user.
285
286
-For instance, we can make one more request to github, load the user profile and show the avatar:
+For instance, we can make one more request to GitHub, load the user profile and show the avatar:
287
288
```js run
289
// Make a request for user.json
290
fetch('/article/promise-chaining/user.json')
291
// Load it as json
292
.then(response => response.json())
293
- // Make a request to github
+ // Make a request to GitHub
294
.then(user => fetch(`https://api.github.com/users/${user.name}`))
295
// Load the response as json
296
0 commit comments