summaryrefslogtreecommitdiff
path: root/doc/api/modules.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/modules.md')
-rw-r--r--doc/api/modules.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/api/modules.md b/doc/api/modules.md
index 71de4e519e..bdff1ab1f1 100644
--- a/doc/api/modules.md
+++ b/doc/api/modules.md
@@ -708,7 +708,7 @@ this, assign the desired export object to `module.exports`. Note that assigning
the desired object to `exports` will simply rebind the local `exports` variable,
which is probably not what is desired.
-For example suppose we were making a module called `a.js`:
+For example, suppose we were making a module called `a.js`:
```js
const EventEmitter = require('events');