Skip to content

Commit f53b4df

Browse files
CameronMooreheadgibfahn
authored andcommitted
doc: 'constructor' implies use of new keyword
The square module is described as exporting a constructor, which would mean it would need to be invoked with the new keyword in bar.js after requiring it. Otherwise it's technically a factory function, not a constructor. PR-URL: #17364 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Jon Moss <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Timothy Gu <[email protected]>
1 parent 23edd08 commit f53b4df

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/api/modules.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ instead of `exports`.
4343
Below, `bar.js` makes use of the `square` module, which exports a constructor:
4444

4545
```js
46-
const square = require('./square.js');
47-
const mySquare = square(2);
48-
console.log(`The area of my square is ${mySquare.area()}`);
46+
const Square = require('./square.js');
47+
const mySquare = new Square(2);
48+
console.log(`The area of mySquare is ${mySquare.area()}`);
4949
```
5050

5151
The `square` module is defined in `square.js`:

0 commit comments

Comments
 (0)