Skip to content

Commit b93cf9d

Browse files
committed
Minor statement change
1 parent c116813 commit b93cf9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

1-js/11-async/01-callbacks/article.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ If you're not familiar with these methods, and their usage in the examples is co
1010
Although, we'll try to make things clear anyway. There won't be anything really complex browser-wise.
1111
```
1212

13-
Many actions in JavaScript are *asynchronous*. In other words, we initiate them now, but they finish later.
13+
Many functions are provided by JavaScript host environments that allow you to schedule *asynchronous* actions. In other words, actions that we initiate now, but they finish later.
1414

15-
For instance, we can schedule such actions using `setTimeout`.
15+
For instance, one such function is the `setTimeout` function.
1616

1717
There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we'll cover them in later chapters).
1818

0 commit comments

Comments
 (0)