@@ -76,8 +76,8 @@ Errors that occur within _Asynchronous APIs_ may be reported in multiple ways:
76
76
// Otherwise handle the data
77
77
});
78
78
```
79
- - When an asynchronous method is called on an object that is an ` EventEmitter ` ,
80
- errors can be routed to that object's ` 'error' ` event.
79
+ - When an asynchronous method is called on an object that is an
80
+ [ ` EventEmitter ` ] [ ] , errors can be routed to that object's ` 'error' ` event.
81
81
82
82
``` js
83
83
const net = require (' net' );
@@ -105,7 +105,7 @@ and [event emitter-based][] APIs, which themselves represent a series of
105
105
asynchronous operations over time (as opposed to a single operation that may
106
106
pass or fail).
107
107
108
- For * all* ` EventEmitter ` objects, if an ` 'error' ` event handler is not
108
+ For * all* [ ` EventEmitter ` ] [ ] objects, if an ` 'error' ` event handler is not
109
109
provided, the error will be thrown, causing the Node.js process to report an
110
110
unhandled exception and crash unless either: The [ ` domain ` ] [ domains ] module is
111
111
used appropriately or a handler has been registered for the
@@ -1433,7 +1433,7 @@ Used when a string that contains unescaped characters was received.
1433
1433
### ERR_UNHANDLED_ERROR
1434
1434
1435
1435
Used when an unhandled "error" occurs (for instance, when an ` 'error' ` event
1436
- is emitted by an ` EventEmitter ` but an ` 'error' ` handler is not registered).
1436
+ is emitted by an [ ` EventEmitter ` ] [ ] but an ` 'error' ` handler is not registered).
1437
1437
1438
1438
<a id =" ERR_UNKNOWN_ENCODING " ></a >
1439
1439
### ERR_UNKNOWN_ENCODING
@@ -1509,6 +1509,7 @@ Used when creation of a [`zlib`][] object fails due to incorrect configuration.
1509
1509
[ `crypto.timingSafeEqual()` ] : crypto.html#crypto_crypto_timingsafeequal_a_b
1510
1510
[ `dgram.createSocket()` ] : dgram.html#dgram_dgram_createsocket_options_callback
1511
1511
[ `ERR_INVALID_ARG_TYPE` ] : #ERR_INVALID_ARG_TYPE
1512
+ [ `EventEmitter` ] : events.html#events_class_eventemitter
1512
1513
[ `hash.digest()` ] : crypto.html#crypto_hash_digest_encoding
1513
1514
[ `hash.update()` ] : crypto.html#crypto_hash_update_data_inputencoding
1514
1515
[ `readable._read()` ] : stream.html#stream_readable_read_size_1
0 commit comments