Skip to content

Commit 1f04635

Browse files
authored
Update 1-js/11-async/03-promise-chaining/article.md
1 parent ee80a68 commit 1f04635

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ fetch('/article/promise-chaining/user.json')
274274
.then(response => response.json())
275275
// Hacer una solicitud a GitHub
276276
.then(user => fetch(`https://api.github.com/users/${user.name}`))
277-
// Cargue la respuesta como json
277+
// Carga la respuesta como json
278278
.then(response => response.json())
279279
// Mostrar la imagen de avatar (githubUser.avatar_url) durante 3 segundos (tal vez animarla)
280280
.then(githubUser => {

0 commit comments

Comments
 (0)