Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSimen Bekkhus <sbekkhus91@gmail.com>2022-04-22 13:44:35 +0300
committerGitHub <noreply@github.com>2022-04-22 13:44:35 +0300
commiteeb27c2e0aecbf418635a8c4b7c4529385798c63 (patch)
tree4a45876f5e0196793380b5a85bf861ddd69ff3de /doc
parente64613d5859b99de9f1fe617c5a9d8fc84b15592 (diff)
doc: order `vm.Module` linker arguments correctly
PR-URL: https://github.com/nodejs/node/pull/42797 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/api/vm.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index bc2e520f38f..aa99c843076 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -560,6 +560,8 @@ The identifier of the current module, as set in the constructor.
// ^^^^^ the module specifier
```
+ * `referencingModule` {vm.Module} The `Module` object `link()` is called on.
+
* `extra` {Object}
* `assert` {Object} The data from the assertion:
<!-- eslint-skip -->
@@ -571,8 +573,6 @@ The identifier of the current module, as set in the constructor.
support, as opposed to, for example, triggering an error if an
unsupported assertion is present.
- * `referencingModule` {vm.Module} The `Module` object `link()` is called on.
-
* Returns: {vm.Module|Promise}
* Returns: {Promise}