Skip to content

Commit d515087

Browse files
authored
Spelling fix: fasion -> fashion
1 parent 3113f7d commit d515087

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
@@ -264,7 +264,7 @@ So far we've seen simple examples, to gain basic understanding. Now let's review
264264

265265
There are many online APIs that deliver paginated data. For instance, when we need a list of users, then we can fetch it page-by-page: a request returns a pre-defined count (e.g. 100 users), and provides an URL to the next page.
266266

267-
The pattern is very common, it's not about users, but just about anything. For instance, Github allows to retrieve commits in the same, paginated fasion:
267+
The pattern is very common, it's not about users, but just about anything. For instance, Github allows to retrieve commits in the same, paginated fashion:
268268

269269
- We should make a request to URL in the form `https://api.github.com/repos/<repo>/commits`.
270270
- It responds with a JSON of 30 commits, and also provides a link to the next page in the `Link` header.

0 commit comments

Comments
 (0)