| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 0b828e5 commit 5e4f9b3
6 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1457,7 +1457,7 @@ added: v8.0.0 | |||
| 1457 | 1457 | argument. | |
| 1458 | 1458 | ||
| 1459 | 1459 | The `_destroy()` method is called by [`writable.destroy()`][writable-destroy]. | |
| 1460 | - It can be overriden by child classes but it **must not** be called directly. | ||
| 1460 | + It can be overridden by child classes but it **must not** be called directly. | ||
| 1461 | 1461 | ||
| 1462 | 1462 | #### writable.\_final(callback) | |
| 1463 | 1463 | <!-- YAML | |
@@ -1670,7 +1670,7 @@ added: v8.0.0 | |||
| 1670 | 1670 | argument. | |
| 1671 | 1671 | ||
| 1672 | 1672 | The `_destroy()` method is called by [`readable.destroy()`][readable-destroy]. | |
| 1673 | - It can be overriden by child classes but it **must not** be called directly. | ||
| 1673 | + It can be overridden by child classes but it **must not** be called directly. | ||
| 1674 | 1674 | ||
| 1675 | 1675 | #### readable.push(chunk[, encoding]) | |
| 1676 | 1676 | <!-- YAML | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -832,7 +832,7 @@ inline int Http2Session::OnBeginHeadersCallback(nghttp2_session* handle, | |||
| 832 | 832 | } | |
| 833 | 833 | ||
| 834 | 834 | // Called by nghttp2 for each header name/value pair in a HEADERS block. | |
| 835 | - // This had to have been preceeded by a call to OnBeginHeadersCallback so | ||
| 835 | + // This had to have been preceded by a call to OnBeginHeadersCallback so | ||
| 836 | 836 | // the Http2Stream is guaranteed to already exist. | |
| 837 | 837 | inline int Http2Session::OnHeaderCallback(nghttp2_session* handle, | |
| 838 | 838 | const nghttp2_frame* frame, | |
@@ -2732,7 +2732,7 @@ void Http2Session::Ping(const FunctionCallbackInfo<Value>& args) { | |||
| 2732 | 2732 | return args.GetReturnValue().Set(false); | |
| 2733 | 2733 | } | |
| 2734 | 2734 | ||
| 2735 | - // The Ping itself is an Async resource. When the acknowledgement is recieved, | ||
| 2735 | + // The Ping itself is an Async resource. When the acknowledgement is received, | ||
| 2736 | 2736 | // the callback will be invoked and a notification sent out to JS land. The | |
| 2737 | 2737 | // notification will include the duration of the ping, allowing the round | |
| 2738 | 2738 | // trip to be measured. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -94,7 +94,7 @@ assert.ok(!arg); | |||
| 94 | 94 | assert.strictEqual(code, null); | |
| 95 | 95 | // most posix systems will show 'SIGABRT', but alpine34 does not | |
| 96 | 96 | if (signal !== 'SIGABRT') { | |
| 97 | - console.log(`parent recived signal ${signal}\nchild's stderr:`); | ||
| 97 | + console.log(`parent received signal ${signal}\nchild's stderr:`); | ||
| 98 | 98 | console.log(stderr); | |
| 99 | 99 | process.exit(1); | |
| 100 | 100 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -647,7 +647,7 @@ internet-related tests. | |||
| 647 | 647 | A set of addresses for internet-related tests. All properties are configurable | |
| 648 | 648 | via `NODE_TEST_*` environment variables. For example, to configure | |
| 649 | 649 | `internet.addresses.INET_HOST`, set the environment | |
| 650 | - vairable `NODE_TEST_INET_HOST` to a specified host. | ||
| 650 | + variable `NODE_TEST_INET_HOST` to a specified host. | ||
| 651 | 651 | ||
| 652 | 652 | ## WPT Module | |
| 653 | 653 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -4,7 +4,7 @@ console.log('A message', 5); | |||
| 4 | 4 | while (t > 0) { | |
| 5 | 5 | if (t++ === 1000) { | |
| 6 | 6 | t = 0; | |
| 7 | - console.log(`Outputed message #${k++}`); | ||
| 7 | + console.log(`Outputted message #${k++}`); | ||
| 8 | 8 | } | |
| 9 | 9 | } | |
| 10 | 10 | process.exit(55); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,7 +17,7 @@ function waitUntilDebugged() { | |||
| 17 | 17 | // call stack depth is 0. We need a chance to call | |
| 18 | 18 | // Debugger.setAsyncCallStackDepth *before* activating the actual timer for | |
| 19 | 19 | // async stack traces to work. Directly using a debugger statement would be | |
| 20 | - // too brittle, and using a longer timeout would unnecesarily slow down the | ||
| 20 | + // too brittle, and using a longer timeout would unnecessarily slow down the | ||
| 21 | 21 | // test on most machines. Triggering a debugger break through an interval is | |
| 22 | 22 | // a faster and more reliable way. | |
| 23 | 23 | process._rawDebug('Signal received, waiting for debugger setup'); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments