summaryrefslogtreecommitdiff
path: root/doc/api/modules.md
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2019-09-13 00:22:29 -0400
committerRich Trott <rtrott@gmail.com>2019-09-16 11:24:54 -0700
commite2dcbf1c3231513c38151d729f180a54ea902da9 (patch)
tree1f9197fb7c0af601c310a179ba089fdac8d6d5b5 /doc/api/modules.md
parent3d841fe20d732111094c3f62febd5a6b8b483b91 (diff)
downloadandroid-node-v8-e2dcbf1c3231513c38151d729f180a54ea902da9.tar.gz
android-node-v8-e2dcbf1c3231513c38151d729f180a54ea902da9.tar.bz2
android-node-v8-e2dcbf1c3231513c38151d729f180a54ea902da9.zip
doc: use consistent unordered list style
Convert to asterisks when there are mixed styles in document. Addresses Markdownlint MD004 rule PR-URL: https://github.com/nodejs/node/pull/29516 Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/modules.md')
-rw-r--r--doc/api/modules.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/api/modules.md b/doc/api/modules.md
index bffea8db7e..6225f41cad 100644
--- a/doc/api/modules.md
+++ b/doc/api/modules.md
@@ -492,14 +492,14 @@ wrapper that looks like the following:
By doing this, Node.js achieves a few things:
-- It keeps top-level variables (defined with `var`, `const` or `let`) scoped to
+* It keeps top-level variables (defined with `var`, `const` or `let`) scoped to
the module rather than the global object.
-- It helps to provide some global-looking variables that are actually specific
+* It helps to provide some global-looking variables that are actually specific
to the module, such as:
- - The `module` and `exports` objects that the implementor can use to export
- values from the module.
- - The convenience variables `__filename` and `__dirname`, containing the
- module's absolute filename and directory path.
+ * The `module` and `exports` objects that the implementor can use to export
+ values from the module.
+ * The convenience variables `__filename` and `__dirname`, containing the
+ module's absolute filename and directory path.
## The module scope