Skip to content

Commit ea1b8a5

Browse files
committed
doc: sort bottom-of-file markdown links
PR-URL: #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>
1 parent 0a734fe commit ea1b8a5

31 files changed

+230
-230
lines changed

doc/api/addons.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1128,14 +1128,14 @@ Test in JavaScript by running:
11281128
const addon = require('./build/Release/addon');
11291129
```
11301130

1131+
[Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide
1132+
[Linking to Node.js' own dependencies]: #addons_linking_to_node_js_own_dependencies
1133+
[Native Abstractions for Node.js]: https://github.com/nodejs/nan
11311134
[bindings]: https://github.com/TooTallNate/node-bindings
11321135
[download]: https://github.com/nodejs/node-addon-examples
1133-
[Embedder's Guide]: https://github.com/v8/v8/wiki/Embedder's%20Guide
11341136
[examples]: https://github.com/nodejs/nan/tree/master/examples/
11351137
[installation instructions]: https://github.com/nodejs/node-gyp#installation
11361138
[libuv]: https://github.com/libuv/libuv
1137-
[Linking to Node.js' own dependencies]: #addons_linking_to_node_js_own_dependencies
1138-
[Native Abstractions for Node.js]: https://github.com/nodejs/nan
11391139
[node-gyp]: https://github.com/nodejs/node-gyp
11401140
[require]: globals.html#globals_require
11411141
[v8-docs]: https://v8docs.nodesource.com/

doc/api/assert.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -589,21 +589,21 @@ assert(Object.is(str1 / 1, str2 / 1));
589589
For more information, see
590590
[MDN's guide on equality comparisons and sameness][mdn-equality-guide].
591591

592+
[`Error`]: errors.html#errors_class_error
593+
[`Map`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Map
594+
[`Object.is()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
595+
[`RegExp`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
596+
[`Set`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Set
597+
[`TypeError`]: errors.html#errors_class_typeerror
592598
[`assert.deepEqual()`]: #assert_assert_deepequal_actual_expected_message
593599
[`assert.deepStrictEqual()`]: #assert_assert_deepstrictequal_actual_expected_message
594600
[`assert.ok()`]: #assert_assert_ok_value_message
595601
[`assert.throws()`]: #assert_assert_throws_block_error_message
596-
[`Error`]: errors.html#errors_class_error
597-
[caveats]: #assert_caveats
598-
[`RegExp`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions
599-
[`TypeError`]: errors.html#errors_class_typeerror
600602
[Abstract Equality Comparison]: https://tc39.github.io/ecma262/#sec-abstract-equality-comparison
601-
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
602-
[`Map`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Map
603-
[`Set`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Set
604-
[`Object.is()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/is
603+
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
605604
[SameValueZero]: https://tc39.github.io/ecma262/#sec-samevaluezero
606-
[prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots
607-
[mdn-equality-guide]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness
605+
[Strict Equality Comparison]: https://tc39.github.io/ecma262/#sec-strict-equality-comparison
606+
[caveats]: #assert_caveats
608607
[enumerable "own" properties]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Enumerability_and_ownership_of_properties
609-
[Object.prototype.toString()]: https://tc39.github.io/ecma262/#sec-object.prototype.tostring
608+
[mdn-equality-guide]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Equality_comparisons_and_sameness
609+
[prototype-spec]: https://tc39.github.io/ecma262/#sec-ordinary-object-internal-methods-and-internal-slots

doc/api/buffer.md

+19-20
Original file line numberDiff line numberDiff line change
@@ -2616,16 +2616,8 @@ buf.fill(0);
26162616
console.log(buf);
26172617
```
26182618

2619-
[`buf.compare()`]: #buffer_buf_compare_target_targetstart_targetend_sourcestart_sourceend
2620-
[`buf.buffer`]: #buffer_buf_buffer
2621-
[`buf.entries()`]: #buffer_buf_entries
2622-
[`buf.indexOf()`]: #buffer_buf_indexof_value_byteoffset_encoding
2623-
[`buf.fill()`]: #buffer_buf_fill_value_offset_end_encoding
2624-
[`buf.keys()`]: #buffer_buf_keys
2625-
[`buf.length`]: #buffer_buf_length
2626-
[`buf.slice()`]: #buffer_buf_slice_start_end
2627-
[`buf.values()`]: #buffer_buf_values
2628-
[`buffer.kMaxLength`]: #buffer_buffer_kmaxlength
2619+
[`ArrayBuffer#slice()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/slice
2620+
[`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
26292621
[`Buffer.alloc()`]: #buffer_class_method_buffer_alloc_size_fill_encoding
26302622
[`Buffer.allocUnsafe()`]: #buffer_class_method_buffer_allocunsafe_size
26312623
[`Buffer.allocUnsafeSlow()`]: #buffer_class_method_buffer_allocunsafeslow_size
@@ -2634,21 +2626,28 @@ console.log(buf);
26342626
[`Buffer.from(buffer)`]: #buffer_class_method_buffer_from_buffer
26352627
[`Buffer.from(string)`]: #buffer_class_method_buffer_from_string_encoding
26362628
[`Buffer.poolSize`]: #buffer_class_property_buffer_poolsize
2637-
[`RangeError`]: errors.html#errors_class_rangeerror
2638-
[`util.inspect()`]: util.html#util_util_inspect_object_options
2639-
2640-
[`ArrayBuffer`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer
2641-
[`ArrayBuffer#slice()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/slice
26422629
[`DataView`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView
2643-
[iterator]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols
26442630
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
2645-
[RFC1345]: https://tools.ietf.org/html/rfc1345
2646-
[RFC4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5
2647-
[`String.prototype.length`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
2631+
[`RangeError`]: errors.html#errors_class_rangeerror
26482632
[`String#indexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/indexOf
26492633
[`String#lastIndexOf()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
2650-
[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
2634+
[`String.prototype.length`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/length
26512635
[`TypedArray.from()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from
2636+
[`TypedArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray
26522637
[`Uint32Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array
26532638
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
2639+
[`buf.buffer`]: #buffer_buf_buffer
2640+
[`buf.compare()`]: #buffer_buf_compare_target_targetstart_targetend_sourcestart_sourceend
2641+
[`buf.entries()`]: #buffer_buf_entries
2642+
[`buf.fill()`]: #buffer_buf_fill_value_offset_end_encoding
2643+
[`buf.indexOf()`]: #buffer_buf_indexof_value_byteoffset_encoding
2644+
[`buf.keys()`]: #buffer_buf_keys
2645+
[`buf.length`]: #buffer_buf_length
2646+
[`buf.slice()`]: #buffer_buf_slice_start_end
2647+
[`buf.values()`]: #buffer_buf_values
2648+
[`buffer.kMaxLength`]: #buffer_buffer_kmaxlength
2649+
[`util.inspect()`]: util.html#util_util_inspect_object_options
2650+
[RFC1345]: https://tools.ietf.org/html/rfc1345
2651+
[RFC4648, Section 5]: https://tools.ietf.org/html/rfc4648#section-5
26542652
[WHATWG spec]: https://encoding.spec.whatwg.org/
2653+
[iterator]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols

doc/api/child_process.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1238,6 +1238,11 @@ to `stdout` although there are only 4 characters.
12381238
[`'error'`]: #child_process_event_error
12391239
[`'exit'`]: #child_process_event_exit
12401240
[`'message'`]: #child_process_event_message
1241+
[`ChildProcess`]: #child_process_child_process
1242+
[`Error`]: errors.html#errors_class_error
1243+
[`EventEmitter`]: events.html#events_class_eventemitter
1244+
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
1245+
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array
12411246
[`child.channel`]: #child_process_child_channel
12421247
[`child.connected`]: #child_process_child_connected
12431248
[`child.disconnect()`]: #child_process_child_disconnect
@@ -1253,10 +1258,6 @@ to `stdout` although there are only 4 characters.
12531258
[`child_process.fork()`]: #child_process_child_process_fork_modulepath_args_options
12541259
[`child_process.spawn()`]: #child_process_child_process_spawn_command_args_options
12551260
[`child_process.spawnSync()`]: #child_process_child_process_spawnsync_command_args_options
1256-
[`ChildProcess`]: #child_process_child_process
1257-
[`Error`]: errors.html#errors_class_error
1258-
[`EventEmitter`]: events.html#events_class_eventemitter
1259-
[`JSON.stringify()`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
12601261
[`maxBuffer` and Unicode]: #child_process_maxbuffer_and_unicode
12611262
[`net.Server`]: net.html#net_class_net_server
12621263
[`net.Socket`]: net.html#net_class_net_socket
@@ -1269,4 +1270,3 @@ to `stdout` although there are only 4 characters.
12691270
[`process.send()`]: process.html#process_process_send_message_sendhandle_options_callback
12701271
[`stdio`]: #child_process_options_stdio
12711272
[synchronous counterparts]: #child_process_synchronous_process_creation
1272-
[`Uint8Array`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array

doc/api/cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -524,10 +524,10 @@ appended to if it does. If an error occurs while attempting to write the
524524
warning to the file, the warning will be written to stderr instead. This is
525525
equivalent to using the `--redirect-warnings=file` command-line flag.
526526

527-
[emit_warning]: process.html#process_process_emitwarning_warning_name_ctor
527+
[`--openssl-config`]: #cli_openssl_config_file
528528
[Buffer]: buffer.html#buffer_buffer
529529
[Chrome Debugging Protocol]: https://chromedevtools.github.io/debugger-protocol-viewer
530-
[debugger]: debugger.html
531530
[REPL]: repl.html
532531
[SlowBuffer]: buffer.html#buffer_class_slowbuffer
533-
[`--openssl-config`]: #cli_openssl_config_file
532+
[debugger]: debugger.html
533+
[emit_warning]: process.html#process_process_emitwarning_warning_name_ctor

doc/api/cluster.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -858,13 +858,13 @@ socket.on('data', (id) => {
858858
});
859859
```
860860

861-
[`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options
862861
[`ChildProcess.send()`]: child_process.html#child_process_child_send_message_sendhandle_options_callback
862+
[`child_process.fork()`]: child_process.html#child_process_child_process_fork_modulepath_args_options
863863
[`disconnect`]: child_process.html#child_process_child_disconnect
864864
[`kill`]: process.html#process_process_kill_pid_signal
865+
[`process` event: `'message'`]: process.html#process_event_message
865866
[`server.close()`]: net.html#net_event_close
866867
[`worker.exitedAfterDisconnect`]: #cluster_worker_exitedafterdisconnect
867868
[Child Process module]: child_process.html#child_process_child_process_fork_modulepath_args_options
868869
[child_process event: 'exit']: child_process.html#child_process_event_exit
869870
[child_process event: 'message']: child_process.html#child_process_event_message
870-
[`process` event: `'message'`]: process.html#process_event_message

doc/api/crypto.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -2199,6 +2199,7 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
21992199

22002200

22012201
[`Buffer`]: buffer.html
2202+
[`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.0.2/crypto/EVP_BytesToKey.html
22022203
[`cipher.final()`]: #crypto_cipher_final_output_encoding
22032204
[`cipher.update()`]: #crypto_cipher_update_data_input_encoding_output_encoding
22042205
[`crypto.createCipher()`]: #crypto_crypto_createcipher_algorithm_password
@@ -2222,7 +2223,6 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
22222223
[`ecdh.generateKeys()`]: #crypto_ecdh_generatekeys_encoding_format
22232224
[`ecdh.setPrivateKey()`]: #crypto_ecdh_setprivatekey_private_key_encoding
22242225
[`ecdh.setPublicKey()`]: #crypto_ecdh_setpublickey_public_key_encoding
2225-
[`EVP_BytesToKey`]: https://www.openssl.org/docs/man1.0.2/crypto/EVP_BytesToKey.html
22262226
[`hash.digest()`]: #crypto_hash_digest_encoding
22272227
[`hash.update()`]: #crypto_hash_update_data_input_encoding
22282228
[`hmac.digest()`]: #crypto_hmac_digest_encoding
@@ -2233,16 +2233,16 @@ the `crypto`, `tls`, and `https` modules and are generally specific to OpenSSL.
22332233
[`verify.update()`]: #crypto_verifier_update_data_input_encoding
22342234
[`verify.verify()`]: #crypto_verifier_verify_object_signature_signature_format
22352235
[Caveats]: #crypto_support_for_weak_or_compromised_algorithms
2236+
[Crypto Constants]: #crypto_crypto_constants_1
22362237
[HTML5's `keygen` element]: http://www.w3.org/TR/html5/forms.html#the-keygen-element
2237-
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
22382238
[NIST SP 800-131A]: http://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-131Ar1.pdf
22392239
[NIST SP 800-132]: http://csrc.nist.gov/publications/nistpubs/800-132/nist-sp800-132.pdf
22402240
[OpenSSL cipher list format]: https://www.openssl.org/docs/man1.0.2/apps/ciphers.html#CIPHER-LIST-FORMAT
22412241
[OpenSSL's SPKAC implementation]: https://www.openssl.org/docs/man1.0.2/apps/spkac.html
2242-
[publicly trusted list of CAs]: https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt
22432242
[RFC 2412]: https://www.rfc-editor.org/rfc/rfc2412.txt
22442243
[RFC 3526]: https://www.rfc-editor.org/rfc/rfc3526.txt
22452244
[RFC 4055]: https://www.rfc-editor.org/rfc/rfc4055.txt
2246-
[stream]: stream.html
2245+
[initialization vector]: https://en.wikipedia.org/wiki/Initialization_vector
2246+
[publicly trusted list of CAs]: https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt
22472247
[stream-writable-write]: stream.html#stream_writable_write_chunk_encoding_callback
2248-
[Crypto Constants]: #crypto_crypto_constants_1
2248+
[stream]: stream.html

doc/api/deprecations.md

+19-19
Original file line numberDiff line numberDiff line change
@@ -600,51 +600,45 @@ The DebugContext will be removed in V8 soon and will not be available in Node
600600

601601
*Note*: DebugContext was an experimental API.
602602

603-
[alloc]: buffer.html#buffer_class_method_buffer_alloc_size_fill_encoding
604-
[alloc_unsafe_size]: buffer.html#buffer_class_method_buffer_allocunsafe_size
605603
[`Buffer.allocUnsafeSlow(size)`]: buffer.html#buffer_class_method_buffer_allocunsafeslow_size
606-
[`Buffer.isBuffer()`]: buffer.html#buffer_class_method_buffer_isbuffer_obj
607604
[`Buffer.from(array)`]: buffer.html#buffer_class_method_buffer_from_array
608-
[from_arraybuffer]: buffer.html#buffer_class_method_buffer_from_arraybuffer_byteoffset_length
609605
[`Buffer.from(buffer)`]: buffer.html#buffer_class_method_buffer_from_buffer
610-
[from_string_encoding]: buffer.html#buffer_class_method_buffer_from_string_encoding
606+
[`Buffer.isBuffer()`]: buffer.html#buffer_class_method_buffer_isbuffer_obj
607+
[`Domain.dispose()`]: domain.html#domain_domain_dispose
608+
[`EventEmitter.listenerCount(emitter, eventName)`]: events.html#events_eventemitter_listenercount_emitter_eventname
609+
[`Server.connections`]: net.html#net_server_connections
610+
[`Server.getConnections()`]: net.html#net_server_getconnections_callback
611+
[`Server.listen({fd: <number>})`]: net.html#net_server_listen_handle_backlog_callback
611612
[`SlowBuffer`]: buffer.html#buffer_class_slowbuffer
612613
[`child_process`]: child_process.html
613614
[`console.error()`]: console.html#console_console_error_data_args
614615
[`console.log()`]: console.html#console_console_log_data_args
615616
[`crypto.createCredentials()`]: crypto.html#crypto_crypto_createcredentials_details
616617
[`crypto.pbkdf2()`]: crypto.html#crypto_crypto_pbkdf2_password_salt_iterations_keylen_digest_callback
617618
[`domain`]: domain.html
618-
[`Domain.dispose()`]: domain.html#domain_domain_dispose
619619
[`ecdh.setPublicKey()`]: crypto.html#crypto_ecdh_setpublickey_public_key_encoding
620620
[`emitter.listenerCount(eventName)`]: events.html#events_emitter_listenercount_eventname
621-
[`EventEmitter.listenerCount(emitter, eventName)`]: events.html#events_eventemitter_listenercount_emitter_eventname
622-
[`fs.exists(path, callback)`]: fs.html#fs_fs_exists_path_callback
623-
[`fs.stat()`]: fs.html#fs_fs_stat_path_callback
624621
[`fs.access()`]: fs.html#fs_fs_access_path_mode_callback
622+
[`fs.exists(path, callback)`]: fs.html#fs_fs_exists_path_callback
625623
[`fs.lchmod(path, mode, callback)`]: fs.html#fs_fs_lchmod_path_mode_callback
626624
[`fs.lchmodSync(path, mode)`]: fs.html#fs_fs_lchmodsync_path_mode
627625
[`fs.lchown(path, uid, gid, callback)`]: fs.html#fs_fs_lchown_path_uid_gid_callback
628626
[`fs.lchownSync(path, uid, gid)`]: fs.html#fs_fs_lchownsync_path_uid_gid
629627
[`fs.read()`]: fs.html#fs_fs_read_fd_buffer_offset_length_position_callback
630628
[`fs.readSync()`]: fs.html#fs_fs_readsync_fd_buffer_offset_length_position
631-
[`Server.connections`]: net.html#net_server_connections
632-
[`Server.getConnections()`]: net.html#net_server_getconnections_callback
633-
[`Server.listen({fd: <number>})`]: net.html#net_server_listen_handle_backlog_callback
629+
[`fs.stat()`]: fs.html#fs_fs_stat_path_callback
634630
[`os.networkInterfaces`]: os.html#os_os_networkinterfaces
635631
[`os.tmpdir()`]: os.html#os_os_tmpdir
636632
[`punycode`]: punycode.html
637633
[`require.extensions`]: globals.html#globals_require_extensions
638-
[`tls.TLSSocket`]: tls.html#tls_class_tls_tlssocket
639634
[`tls.CryptoStream`]: tls.html#tls_class_cryptostream
640-
[`tls.SecurePair`]: tls.html#tls_class_securepair
641635
[`tls.SecureContext`]: tls.html#tls_tls_createsecurecontext_options
636+
[`tls.SecurePair`]: tls.html#tls_class_securepair
637+
[`tls.TLSSocket`]: tls.html#tls_class_tls_tlssocket
642638
[`tls.createSecureContext()`]: tls.html#tls_tls_createsecurecontext_options
643-
[`util`]: util.html
639+
[`util._extend()`]: util.html#util_util_extend_target_source
644640
[`util.debug()`]: util.html#util_util_debug_string
645641
[`util.error()`]: util.html#util_util_error_strings
646-
[`util.puts()`]: util.html#util_util_puts_strings
647-
[`util.print()`]: util.html#util_util_print_strings
648642
[`util.isArray()`]: util.html#util_util_isarray_object
649643
[`util.isBoolean()`]: util.html#util_util_isboolean_object
650644
[`util.isBuffer()`]: util.html#util_util_isbuffer_object
@@ -661,6 +655,12 @@ The DebugContext will be removed in V8 soon and will not be available in Node
661655
[`util.isSymbol()`]: util.html#util_util_issymbol_object
662656
[`util.isUndefined()`]: util.html#util_util_isundefined_object
663657
[`util.log()`]: util.html#util_util_log_string
664-
[`util._extend()`]: util.html#util_util_extend_target_source
665-
[`worker.suicide`]: cluster.html#cluster_worker_suicide
658+
[`util.print()`]: util.html#util_util_print_strings
659+
[`util.puts()`]: util.html#util_util_puts_strings
660+
[`util`]: util.html
666661
[`worker.exitedAfterDisconnect`]: cluster.html#cluster_worker_exitedafterdisconnect
662+
[`worker.suicide`]: cluster.html#cluster_worker_suicide
663+
[alloc]: buffer.html#buffer_class_method_buffer_alloc_size_fill_encoding
664+
[alloc_unsafe_size]: buffer.html#buffer_class_method_buffer_allocunsafe_size
665+
[from_arraybuffer]: buffer.html#buffer_class_method_buffer_from_arraybuffer_byteoffset_length
666+
[from_string_encoding]: buffer.html#buffer_class_method_buffer_from_string_encoding

doc/api/dgram.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -498,14 +498,14 @@ interfaces" address on a random port (it does the right thing for both `udp4`
498498
and `udp6` sockets). The bound address and port can be retrieved using
499499
[`socket.address().address`][] and [`socket.address().port`][].
500500

501-
[`EventEmitter`]: events.html
502-
[`Buffer`]: buffer.html
503501
[`'close'`]: #dgram_event_close
502+
[`Buffer`]: buffer.html
503+
[`Error`]: errors.html#errors_class_error
504+
[`EventEmitter`]: events.html
504505
[`close()`]: #dgram_socket_close_callback
505506
[`cluster`]: cluster.html
506-
[`dgram.createSocket()`]: #dgram_dgram_createsocket_options_callback
507507
[`dgram.Socket#bind()`]: #dgram_socket_bind_options_callback
508-
[`Error`]: errors.html#errors_class_error
508+
[`dgram.createSocket()`]: #dgram_dgram_createsocket_options_callback
509509
[`socket.address().address`]: #dgram_socket_address
510510
[`socket.address().port`]: #dgram_socket_address
511511
[`socket.bind()`]: #dgram_socket_bind_port_address_callback

0 commit comments

Comments
 (0)