diff --git a/resources/docs/docs/chapters/tp/bundle2.md b/resources/docs/docs/chapters/tp/bundle2.md index 8e1ff4ff9126d3f9a98395141e56b0ade9787b06..11fb1abbd9febeb3e10d876ae7f643d1c10158b4 100644 --- a/resources/docs/docs/chapters/tp/bundle2.md +++ b/resources/docs/docs/chapters/tp/bundle2.md @@ -29,14 +29,15 @@ After this chapter, thanks to the _ES modules_, there will be no more imported f - Edit `utils.js`. Look at the `TODO #export-functions` comments for instructions. - Write an `export` statement to export the `parseUrl` function. - ??? note "Show the utils.js file" - === "utils.js" + +??? note "Show the utils.js file" - ```js linenums="1" + === "utils.js" + ```js linenums="1" export function parseUrl() { // ... } - ``` + ``` - Edit `welcome.js`, `game.js` and `score.js`. Look at the `TODO #export-functions` comments for instructions.