| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ba27e72 commit f2cd6df
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4974,7 +4974,7 @@ HKDF is a simple key derivation function defined in RFC 5869. The given `ikm`, | |||
| 4974 | 4974 | `salt` and `info` are used with the `digest` to derive a key of `keylen` bytes. | |
| 4975 | 4975 | ||
| 4976 | 4976 | The supplied `callback` function is called with two arguments: `err` and | |
| 4977 | - `derivedKey`. If an errors occurs while deriving the key, `err` will be set; | ||
| 4977 | + `derivedKey`. If an error occurs while deriving the key, `err` will be set; | ||
| 4978 | 4978 | otherwise `err` will be `null`. The successfully generated `derivedKey` will | |
| 4979 | 4979 | be passed to the callback as an {ArrayBuffer}. An error will be thrown if any | |
| 4980 | 4980 | of the input arguments specify invalid values or types. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1482,7 +1482,7 @@ New HTTP/2 Streams may not be opened after the `Http2Session` has received a | |||
| 1482 | 1482 | ||
| 1483 | 1483 | ### `ERR_HTTP2_HEADERS_AFTER_RESPOND` | |
| 1484 | 1484 | ||
| 1485 | - An additional headers was specified after an HTTP/2 response was initiated. | ||
| 1485 | + Additional headers were specified after an HTTP/2 response was initiated. | ||
| 1486 | 1486 | ||
| 1487 | 1487 | <a id="ERR_HTTP2_HEADERS_SENT"></a> | |
| 1488 | 1488 | ||
@@ -2765,7 +2765,7 @@ A QUIC session failed because version negotiation is required. | |||
| 2765 | 2765 | ||
| 2766 | 2766 | ### `ERR_REQUIRE_ASYNC_MODULE` | |
| 2767 | 2767 | ||
| 2768 | - When trying to `require()` a [ES Module][], the module turns out to be asynchronous. | ||
| 2768 | + When trying to `require()` an [ES Module][], the module turns out to be asynchronous. | ||
| 2769 | 2769 | That is, it contains top-level await. | |
| 2770 | 2770 | ||
| 2771 | 2771 | To see where the top-level await is, use | |
@@ -2776,7 +2776,7 @@ before looking for the top-level awaits). | |||
| 2776 | 2776 | ||
| 2777 | 2777 | ### `ERR_REQUIRE_CYCLE_MODULE` | |
| 2778 | 2778 | ||
| 2779 | - When trying to `require()` a [ES Module][], a CommonJS to ESM or ESM to CommonJS edge | ||
| 2779 | + When trying to `require()` an [ES Module][], a CommonJS to ESM or ESM to CommonJS edge | ||
| 2780 | 2780 | participates in an immediate cycle. | |
| 2781 | 2781 | This is not allowed because ES Modules cannot be evaluated while they are | |
| 2782 | 2782 | already being evaluated. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1186,7 +1186,7 @@ added: | |||
| 1186 | 1186 | - v12.16.0 | |
| 1187 | 1187 | --> | |
| 1188 | 1188 | ||
| 1189 | - * Type: {boolean} Whether the request is send through a reused socket. | ||
| 1189 | + * Type: {boolean} Whether the request is sent through a reused socket. | ||
| 1190 | 1190 | ||
| 1191 | 1191 | When sending request through a keep-alive enabled agent, the underlying socket | |
| 1192 | 1192 | might be reused. But if server closes connection at unfortunate time, client | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2089,7 +2089,7 @@ Creates a new TCP or [IPC][] server. | |||
| 2089 | 2089 | If `allowHalfOpen` is set to `true`, when the other end of the socket | |
| 2090 | 2090 | signals the end of transmission, the server will only send back the end of | |
| 2091 | 2091 | transmission when [`socket.end()`][] is explicitly called. For example, in the | |
| 2092 | - context of TCP, when a FIN packed is received, a FIN packed is sent | ||
| 2092 | + context of TCP, when a FIN packet is received, a FIN packet is sent | ||
| 2093 | 2093 | back only when [`socket.end()`][] is explicitly called. Until then the | |
| 2094 | 2094 | connection is half-closed (non-readable but still writable). See [`'end'`][] | |
| 2095 | 2095 | event and [RFC 1122][half-closed] (section 4.2.2.13) for more information. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3244,7 +3244,7 @@ const { platform } = require('node:process'); | |||
| 3244 | 3244 | console.log(`This platform is ${platform}`); | |
| 3245 | 3245 | ``` | |
| 3246 | 3246 | ||
| 3247 | - The value `'android'` may also be returned if the Node.js is built on the | ||
| 3247 | + The value `'android'` may also be returned if Node.js is built on the | ||
| 3248 | 3248 | Android operating system. However, Android support in Node.js | |
| 3249 | 3249 | [is experimental][Android building]. | |
| 3250 | 3250 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -101,7 +101,7 @@ added: v0.6.1 | |||
| 101 | 101 | ||
| 102 | 102 | The `punycode.toUnicode()` method converts a string representing a domain name | |
| 103 | 103 | containing [Punycode][] encoded characters into Unicode. Only the [Punycode][] | |
| 104 | - encoded parts of the domain name are be converted. | ||
| 104 | + encoded parts of the domain name are converted. | ||
| 105 | 105 | ||
| 106 | 106 | ```js | |
| 107 | 107 | // decode domain names | |
| Back | FazBrowse Home | New Git URL |
0 commit comments