Skip to content
This repository was archived by the owner on Oct 15, 2020. It is now read-only.

Commit 1615778

Browse files
committedNov 8, 2017
meta: merge node/master into node-chakracore/master
Merge 0300565 as of 2017-11-06 This commit was automatically generated. For any problems, please contact jackhorton Reviewed-By: Jack Horton <[email protected]>
2 parents a9a7dd0 + 0300565 commit 1615778

File tree

285 files changed

+9461
-8909
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

285 files changed

+9461
-8909
lines changed
 

‎doc/api/errors.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -754,6 +754,11 @@ more headers.
754754
Used when an invalid character is found in an HTTP response status message
755755
(reason phrase).
756756

757+
<a id="ERR_HTTP_INVALID_HEADER_VALUE"></a>
758+
### ERR_HTTP_INVALID_HEADER_VALUE
759+
760+
Used to indicate that an invalid HTTP header value has been specified.
761+
757762
<a id="ERR_HTTP_INVALID_STATUS_CODE"></a>
758763
### ERR_HTTP_INVALID_STATUS_CODE
759764

@@ -837,7 +842,7 @@ requests and responses.
837842
<a id="ERR_HTTP2_INVALID_HEADER_VALUE"></a>
838843
### ERR_HTTP2_INVALID_HEADER_VALUE
839844

840-
Used to indicate that an invalid HTTP/2 header value has been specified.
845+
Used to indicate that an invalid HTTP2 header value has been specified.
841846

842847
<a id="ERR_HTTP2_INVALID_INFO_STATUS"></a>
843848
### ERR_HTTP2_INVALID_INFO_STATUS

‎doc/api/events.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ myEmitter.emit('event', 'a', 'b');
7777

7878
## Asynchronous vs. Synchronous
7979

80-
The `EventListener` calls all listeners synchronously in the order in which
80+
The `EventEmitter` calls all listeners synchronously in the order in which
8181
they were registered. This is important to ensure the proper sequencing of
8282
events and to avoid race conditions or logic errors. When appropriate,
8383
listener functions can switch to an asynchronous mode of operation using
@@ -268,7 +268,7 @@ property can be used. If this value is not a positive number, a `TypeError`
268268
will be thrown.
269269

270270
Take caution when setting the `EventEmitter.defaultMaxListeners` because the
271-
change effects *all* `EventEmitter` instances, including those created before
271+
change affects *all* `EventEmitter` instances, including those created before
272272
the change is made. However, calling [`emitter.setMaxListeners(n)`][] still has
273273
precedence over `EventEmitter.defaultMaxListeners`.
274274

0 commit comments

Comments
 (0)
This repository has been archived.