summaryrefslogtreecommitdiff
path: root/doc/api/vm.md
diff options
context:
space:
mode:
authorSam Roberts <vieuxtech@gmail.com>2017-05-08 09:30:13 -0700
committerSam Roberts <vieuxtech@gmail.com>2017-05-08 09:30:55 -0700
commitea1b8a5cbcf4a4882c25f57176f8fd00728bffb3 (patch)
tree4d7906d5d2c928d2cdb29c583578f6115e95ec98 /doc/api/vm.md
parent0a734fec885409a09b9d18319e4ea7f6f25e6a3e (diff)
downloadandroid-node-v8-ea1b8a5cbcf4a4882c25f57176f8fd00728bffb3.tar.gz
android-node-v8-ea1b8a5cbcf4a4882c25f57176f8fd00728bffb3.tar.bz2
android-node-v8-ea1b8a5cbcf4a4882c25f57176f8fd00728bffb3.zip
doc: sort bottom-of-file markdown links
PR-URL: https://github.com/nodejs/node/pull/12726 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'doc/api/vm.md')
-rw-r--r--doc/api/vm.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/api/vm.md b/doc/api/vm.md
index b8047d8f36..aa36319ac2 100644
--- a/doc/api/vm.md
+++ b/doc/api/vm.md
@@ -479,15 +479,15 @@ within which it can operate. The process of creating the V8 Context and
associating it with the `sandbox` object is what this document refers to as
"contextifying" the `sandbox`.
-[indirect `eval()` call]: https://es5.github.io/#x10.4.2
-[global object]: https://es5.github.io/#x15.1
[`Error`]: errors.html#errors_class_error
+[`eval()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval
[`script.runInContext()`]: #vm_script_runincontext_contextifiedsandbox_options
[`script.runInThisContext()`]: #vm_script_runinthiscontext_options
[`vm.createContext()`]: #vm_vm_createcontext_sandbox
[`vm.runInContext()`]: #vm_vm_runincontext_code_contextifiedsandbox_options
[`vm.runInThisContext()`]: #vm_vm_runinthiscontext_code_options
-[`eval()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/eval
[V8 Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide#contexts
-[contextified]: #vm_what_does_it_mean_to_contextify_an_object
[command line option]: cli.html
+[contextified]: #vm_what_does_it_mean_to_contextify_an_object
+[global object]: https://es5.github.io/#x15.1
+[indirect `eval()` call]: https://es5.github.io/#x10.4.2