diff options
Diffstat (limited to 'doc/api/modules.md')
-rw-r--r-- | doc/api/modules.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/modules.md b/doc/api/modules.md index 28a13fb36d..5292d23897 100644 --- a/doc/api/modules.md +++ b/doc/api/modules.md @@ -49,7 +49,7 @@ console.log(`The area of mySquare is ${mySquare.area()}`); The `square` module is defined in `square.js`: ```js -// assigning to exports will not modify module, must use module.exports +// Assigning to exports will not modify module, must use module.exports module.exports = class Square { constructor(width) { this.width = width; |