Skip to content

Commit e35bcf2

Browse files
authored
Merge pull request #1057 from jasmaa/minor-fixes
Minor fixes
2 parents 661cb16 + dfb4f00 commit e35bcf2

File tree

2 files changed

+2
-2
lines changed
  • 1-js

2 files changed

+2
-2
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
@@ -130,7 +130,7 @@ That's natural, as it expects to find `Symbol.iterator`, same as `for..of` witho
130130

131131
## Async generators
132132

133-
As we already know, JavaScript also supprots generators, and they are iterable.
133+
As we already know, JavaScript also supports generators, and they are iterable.
134134

135135
Let's recall a sequence generator from the chapter [](info:generators). It generates a sequence of values from `start` to `end`:
136136

1-js/13-modules/01-modules-intro/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
As our application grows bigger, we want to split it into multiple files, so called 'modules'.
55
A module usually contains a class or a library of useful functions.
66

7-
For a long time, JavaScript existed without a language-level module syntax. That wasn't a problem, because initially scripts were small and simple. So there was no need.
7+
For a long time, JavaScript existed without a language-level module syntax. That wasn't a problem, because initially scripts were small and simple, so there was no need.
88

99
But eventually scripts became more and more complex, so the community invented a variety of ways to organize code into modules, special libraries to load modules on demand.
1010

0 commit comments

Comments
 (0)