| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 5ea9237 commit 3bfca0b
10 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -42,7 +42,7 @@ changes: | |||
| 42 | 42 | is specified using an IP address, in which case the default is `''` (no | |
| 43 | 43 | extension). | |
| 44 | 44 | ||
| 45 | - See [`Session Resumption`][] for infomation about TLS session reuse. | ||
| 45 | + See [`Session Resumption`][] for information about TLS session reuse. | ||
| 46 | 46 | ||
| 47 | 47 | ## Class: https.Server | |
| 48 | 48 | <!-- YAML | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -307,7 +307,7 @@ function insert(item, refed, start) { | |||
| 307 | 307 | if (msecs < 0 || msecs === undefined) | |
| 308 | 308 | return; | |
| 309 | 309 | ||
| 310 | - // Truncate so that accuracy of sub-milisecond timers is not assumed. | ||
| 310 | + // Truncate so that accuracy of sub-millisecond timers is not assumed. | ||
| 311 | 311 | msecs = Math.trunc(msecs); | |
| 312 | 312 | ||
| 313 | 313 | item._idleStart = start; | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -125,7 +125,7 @@ MaybeLocal<Object> CreateProcessObject(Environment* env) { | |||
| 125 | 125 | #endif // NODE_HAS_RELEASE_URLS | |
| 126 | 126 | ||
| 127 | 127 | // process._rawDebug: may be overwritten later in JS land, but should be | |
| 128 | - // availbale from the begining for debugging purposes | ||
| 128 | + // available from the beginning for debugging purposes | ||
| 129 | 129 | env->SetMethod(process, "_rawDebug", RawDebug); | |
| 130 | 130 | ||
| 131 | 131 | return scope.Escape(process); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ console.log(message, 5); | |||
| 6 | 6 | while (t > 0) { | |
| 7 | 7 | if (t++ === 1000) { | |
| 8 | 8 | t = 0; | |
| 9 | - console.log(`Outputed message #${k++}`); | ||
| 9 | + console.log(`Outputted message #${k++}`); | ||
| 10 | 10 | } | |
| 11 | 11 | } | |
| 12 | 12 | process.exit(55); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -78,7 +78,7 @@ const interval = setInterval(common.mustCall(() => { | |||
| 78 | 78 | `Non-integer delay ordering should be ${expected}, but got ${ordering}` | |
| 79 | 79 | ); | |
| 80 | 80 | ||
| 81 | - // 2 should always be last of these delays due to ordering guarentees by | ||
| 81 | + // 2 should always be last of these delays due to ordering guarantees by | ||
| 82 | 82 | // the implementation. | |
| 83 | 83 | }), 2); | |
| 84 | 84 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,7 +22,7 @@ const { inspect } = require('util'); | |||
| 22 | 22 | }), 1); | |
| 23 | 23 | timer.unref(); | |
| 24 | 24 | ||
| 25 | - // This relies on implicit timers handle sorting withing libuv. | ||
| 25 | + // This relies on implicit timers handle sorting within libuv. | ||
| 26 | 26 | ||
| 27 | 27 | setTimeout(common.mustCall(() => { | |
| 28 | 28 | strictEqual(called, false, 'unref()\'d timer returned before check'); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,7 @@ const fixtures = require('../common/fixtures'); | |||
| 13 | 13 | // This test has a dependency on the order in which the TCP connection is made, | |
| 14 | 14 | // and TLS server handshake completes. It assumes those server side events occur | |
| 15 | 15 | // before the client side write callback, which is not guaranteed by the TLS | |
| 16 | - // API. It usally passes with TLS1.3, but TLS1.3 didn't exist at the time the | ||
| 16 | + // API. It usually passes with TLS1.3, but TLS1.3 didn't exist at the time the | ||
| 17 | 17 | // bug existed. | |
| 18 | 18 | // | |
| 19 | 19 | // Pin the test to TLS1.2, since the test shouldn't be changed in a way that | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ const common = require('../common'); | |||
| 6 | 6 | // arbitrary execution points. By running a lot of | |
| 7 | 7 | // JS code in a tight loop, the expectation | |
| 8 | 8 | // is that those will be at various control flow points | |
| 9 | - // preferrably in the JS land. | ||
| 9 | + // preferably in the JS land. | ||
| 10 | 10 | ||
| 11 | 11 | const { Worker } = require('worker_threads'); | |
| 12 | 12 | const code = 'setInterval(() => {' + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -6,7 +6,7 @@ const common = require('../common'); | |||
| 6 | 6 | // arbitrary execution points. By using a number of | |
| 7 | 7 | // internal modules as load candidates, the expectation | |
| 8 | 8 | // is that those will be at various control flow points | |
| 9 | - // preferrably in the C++ land. | ||
| 9 | + // preferably in the C++ land. | ||
| 10 | 10 | ||
| 11 | 11 | const { Worker } = require('worker_threads'); | |
| 12 | 12 | const modules = [ 'fs', 'assert', 'async_hooks', 'buffer', 'child_process', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -127,7 +127,7 @@ std::string CodeCacheBuilder::Generate(Local<Context> context) { | |||
| 127 | 127 | // TODO(joyeecheung): we can only compile the modules that can be | |
| 128 | 128 | // required here because the parameters for other types of builtins | |
| 129 | 129 | // are still very flexible. We should look into auto-generating | |
| 130 | - // the paramters from the source somehow. | ||
| 130 | + // the parameters from the source somehow. | ||
| 131 | 131 | if (loader->CanBeRequired(id.c_str())) { | |
| 132 | 132 | NativeModuleLoader::Result result; | |
| 133 | 133 | USE(loader->CompileAsModule(context, id.c_str(), &result)); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments