Skip to content

Commit d5f1b4a

Browse files
authored
Merge pull request #2810 from lankerened/master
Update article.md
2 parents d7f7998 + 180cb44 commit d5f1b4a

File tree

1 file changed

+1
-1
lines changed
  • 1-js/12-generators-iterators/2-async-iterators-generators

1 file changed

+1
-1
lines changed

1-js/12-generators-iterators/2-async-iterators-generators/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ An example of use (shows commit authors in console):
376376
377377
for await (const commit of fetchCommits('javascript-tutorial/en.javascript.info')) {
378378
379-
console.log(commit.author.login);
379+
console.log(commit.author.name);
380380
381381
if (++count == 100) { // let's stop at 100 commits
382382
break;

0 commit comments

Comments
 (0)