Skip to content

Commit 5982afb

Browse files
committed
Fix GitHub casing
1 parent b457de1 commit 5982afb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/11-async/03-promise-chaining/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -283,14 +283,14 @@ fetch('/article/promise-chaining/user.json')
283283

284284
Now let's do something with the loaded user.
285285

286-
For instance, we can make one more request to github, load the user profile and show the avatar:
286+
For instance, we can make one more request to GitHub, load the user profile and show the avatar:
287287

288288
```js run
289289
// Make a request for user.json
290290
fetch('/article/promise-chaining/user.json')
291291
// Load it as json
292292
.then(response => response.json())
293-
// Make a request to github
293+
// Make a request to GitHub
294294
.then(user => fetch(`https://api.github.com/users/${user.name}`))
295295
// Load the response as json
296296
.then(response => response.json())

0 commit comments

Comments
 (0)