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
diff options
context:
space:
mode:
authorSimen Bekkhus <sbekkhus91@gmail.com>2022-04-22 13:44:35 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-04-28 07:57:21 +0300
commitc6c1dc58335f08b52139a0692502486bcb8b6ea0 (patch)
treebdd2671cf276f08ea115225456711cc447a7d04b /doc/api/vm.md
parentc46e7bbf699fe28a0b36148aa8191e7e41a87e1b (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/api/vm.md')
-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}