diff --git a/1-js/11-async/01-callbacks/article.md b/1-js/11-async/01-callbacks/article.md index 57115a9098..93ab7d3f29 100644 --- a/1-js/11-async/01-callbacks/article.md +++ b/1-js/11-async/01-callbacks/article.md @@ -14,7 +14,7 @@ Many functions are provided by JavaScript host environments that allow you to sc For instance, one such function is the `setTimeout` function. -There are other real-world examples of asynchronous actions, e.g. loading scripts and modules (we'll cover them in later chapters). +There are other real-world examples of asynchronous actions, e.g. [loading scripts](/loading) and [modules](/modules) (we'll cover them in later chapters). Take a look at the function `loadScript(src)`, that loads a script with the given `src`: