| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 123fad6 commit bc5771e
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2107,7 +2107,7 @@ otherwise `err` will be `null`. By default, the successfully generated | |||
| 2107 | 2107 | thrown if any of the input arguments specify invalid values or types. | |
| 2108 | 2108 | ||
| 2109 | 2109 | If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, | |
| 2110 | - please specify a `digest` explicitely. | ||
| 2110 | + please specify a `digest` explicitly. | ||
| 2111 | 2111 | ||
| 2112 | 2112 | The `iterations` argument must be a number set as high as possible. The | |
| 2113 | 2113 | higher the number of iterations, the more secure the derived key will be, | |
@@ -2173,7 +2173,7 @@ If an error occurs an `Error` will be thrown, otherwise the derived key will be | |||
| 2173 | 2173 | returned as a [`Buffer`][]. | |
| 2174 | 2174 | ||
| 2175 | 2175 | If `digest` is `null`, `'sha1'` will be used. This behavior is deprecated, | |
| 2176 | - please specify a `digest` explicitely. | ||
| 2176 | + please specify a `digest` explicitly. | ||
| 2177 | 2177 | ||
| 2178 | 2178 | The `iterations` argument must be a number set as high as possible. The | |
| 2179 | 2179 | higher the number of iterations, the more secure the derived key will be, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -378,7 +378,7 @@ typedef void (*napi_finalize)(napi_env env, | |||
| 378 | 378 | ||
| 379 | 379 | #### napi_async_execute_callback | |
| 380 | 380 | Function pointer used with functions that support asynchronous | |
| 381 | - operations. Callback functions must statisfy the following signature: | ||
| 381 | + operations. Callback functions must satisfy the following signature: | ||
| 382 | 382 | ||
| 383 | 383 | ```C | |
| 384 | 384 | typedef void (*napi_async_execute_callback)(napi_env env, void* data); | |
@@ -391,7 +391,7 @@ calls should be made in `napi_async_complete_callback` instead. | |||
| 391 | 391 | ||
| 392 | 392 | #### napi_async_complete_callback | |
| 393 | 393 | Function pointer used with functions that support asynchronous | |
| 394 | - operations. Callback functions must statisfy the following signature: | ||
| 394 | + operations. Callback functions must satisfy the following signature: | ||
| 395 | 395 | ||
| 396 | 396 | ```C | |
| 397 | 397 | typedef void (*napi_async_complete_callback)(napi_env env, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1674,7 +1674,7 @@ reports for the current process. Additional documentation is available in the | |||
| 1674 | 1674 | added: v11.8.0 | |
| 1675 | 1675 | --> | |
| 1676 | 1676 | ||
| 1677 | - * `err` {Error} A custom error used for reporting the JavsScript stack. | ||
| 1677 | + * `err` {Error} A custom error used for reporting the JavaScript stack. | ||
| 1678 | 1678 | * Returns: {string} | |
| 1679 | 1679 | ||
| 1680 | 1680 | Returns a JSON-formatted diagnostic report for the running process. The report's | |
@@ -1734,7 +1734,7 @@ added: v11.8.0 | |||
| 1734 | 1734 | should be a relative path, that will be appended to the directory specified in | |
| 1735 | 1735 | `process.report.setOptions`, or the current working directory of the Node.js | |
| 1736 | 1736 | process, if unspecified. | |
| 1737 | - * `err` {Error} A custom error used for reporting the JavsScript stack. | ||
| 1737 | + * `err` {Error} A custom error used for reporting the JavaScript stack. | ||
| 1738 | 1738 | ||
| 1739 | 1739 | * Returns: {string} Returns the filename of the generated report. | |
| 1740 | 1740 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -224,7 +224,7 @@ if a previous write has failed. | |||
| 224 | 224 | * `id` {integer} A 32-bit unsigned integer. | |
| 225 | 225 | * `arrayBuffer` {ArrayBuffer} An `ArrayBuffer` instance. | |
| 226 | 226 | ||
| 227 | - Marks an `ArrayBuffer` as havings its contents transferred out of band. | ||
| 227 | + Marks an `ArrayBuffer` as having its contents transferred out of band. | ||
| 228 | 228 | Pass the corresponding `ArrayBuffer` in the deserializing context to | |
| 229 | 229 | [`deserializer.transferArrayBuffer()`][]. | |
| 230 | 230 | ||
@@ -328,7 +328,7 @@ Deserializes a JavaScript value from the buffer and returns it. | |||
| 328 | 328 | * `id` {integer} A 32-bit unsigned integer. | |
| 329 | 329 | * `arrayBuffer` {ArrayBuffer|SharedArrayBuffer} An `ArrayBuffer` instance. | |
| 330 | 330 | ||
| 331 | - Marks an `ArrayBuffer` as havings its contents transferred out of band. | ||
| 331 | + Marks an `ArrayBuffer` as having its contents transferred out of band. | ||
| 332 | 332 | Pass the corresponding `ArrayBuffer` in the serializing context to | |
| 333 | 333 | [`serializer.transferArrayBuffer()`][] (or return the `id` from | |
| 334 | 334 | [`serializer._getSharedArrayBufferId()`][] in the case of `SharedArrayBuffer`s). | |
| Back | FazBrowse Home | New Git URL |
0 commit comments