| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e3e36f9 commit a994d3d
8 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2621,7 +2621,7 @@ changes: | |||
| 2621 | 2621 | - v23.4.0 | |
| 2622 | 2622 | - v22.13.0 | |
| 2623 | 2623 | pr-url: https://github.com/nodejs/node/pull/55897 | |
| 2624 | - description: Snapsnot testing is no longer experimental. | ||
| 2624 | + description: Snapshot testing is no longer experimental. | ||
| 2625 | 2625 | --> | |
| 2626 | 2626 | ||
| 2627 | 2627 | Regenerates the snapshot files used by the test runner for [snapshot testing][]. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1231,7 +1231,7 @@ added: v23.8.0 | |||
| 1231 | 1231 | ||
| 1232 | 1232 | * {bigint|number} | |
| 1233 | 1233 | ||
| 1234 | - Specifies the maxumum session flow-control window size. | ||
| 1234 | + Specifies the maximum session flow-control window size. | ||
| 1235 | 1235 | ||
| 1236 | 1236 | #### `sessionOptions.minVersion` | |
| 1237 | 1237 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -986,7 +986,7 @@ added: v22.3.0 | |||
| 986 | 986 | changes: | |
| 987 | 987 | - version: v23.4.0 | |
| 988 | 988 | pr-url: https://github.com/nodejs/node/pull/55897 | |
| 989 | - description: Snapsnot testing is no longer experimental. | ||
| 989 | + description: Snapshot testing is no longer experimental. | ||
| 990 | 990 | --> | |
| 991 | 991 | ||
| 992 | 992 | Snapshot tests allow arbitrary values to be serialized into string values and | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -30,7 +30,7 @@ struct has_priority<T, std::void_t<decltype(std::declval<T>().priority)>> | |||
| 30 | 30 | template <class T> | |
| 31 | 31 | class TaskQueue { | |
| 32 | 32 | public: | |
| 33 | - // If the entry type has a priority memeber, order the priority queue by | ||
| 33 | + // If the entry type has a priority member, order the priority queue by | ||
| 34 | 34 | // that - higher priority first. Otherwise, maintain insertion order. | |
| 35 | 35 | struct EntryCompare { | |
| 36 | 36 | bool operator()(const std::unique_ptr<T>& a, | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2730,7 +2730,7 @@ void Session::EmitVersionNegotiation(const ngtcp2_pkt_hd& hd, | |||
| 2730 | 2730 | versions[n] = Integer::NewFromUnsigned(env()->isolate(), sv[n]); | |
| 2731 | 2731 | } | |
| 2732 | 2732 | ||
| 2733 | - // supported are the versions we acutually support expressed as a range. | ||
| 2733 | + // supported are the versions we actually support expressed as a range. | ||
| 2734 | 2734 | // The first value is the minimum version, the second is the maximum. | |
| 2735 | 2735 | Local<Value> supported[] = { | |
| 2736 | 2736 | Integer::NewFromUnsigned(env()->isolate(), opts.min_version), | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -55,7 +55,7 @@ class Endpoint; | |||
| 55 | 55 | // is created. This ngtcp2_conn is destroyed when the session object is freed. | |
| 56 | 56 | // However, the session can be in a closed/destroyed state and still have a | |
| 57 | 57 | // valid ngtcp2_conn pointer. This is important because the ngtcp2 still might | |
| 58 | - // be processsing data within the scope of an ngtcp2_conn after the session | ||
| 58 | + // be processing data within the scope of an ngtcp2_conn after the session | ||
| 59 | 59 | // object itself is closed/destroyed by user code. | |
| 60 | 60 | class Session final : public AsyncWrap, private SessionTicket::AppData::Source { | |
| 61 | 61 | public: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -58,7 +58,7 @@ class SessionTicket final : public MemoryRetainer { | |||
| 58 | 58 | }; | |
| 59 | 59 | ||
| 60 | 60 | // SessionTicket::AppData is a utility class that is used only during the | |
| 61 | - // generation or access of TLS stateless sesson tickets. It exists solely to | ||
| 61 | + // generation or access of TLS stateless session tickets. It exists solely to | ||
| 62 | 62 | // provide a easier way for Session::Application instances to set relevant | |
| 63 | 63 | // metadata in the session ticket when it is created, and the extract and | |
| 64 | 64 | // subsequently verify that data when a ticket is received and is being | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -69,7 +69,7 @@ namespace quic { | |||
| 69 | 69 | V(ACKED_AT, acked_at) \ | |
| 70 | 70 | /* Marks the timestamp when the stream was destroyed */ \ | |
| 71 | 71 | V(DESTROYED_AT, destroyed_at) \ | |
| 72 | - /* Records the total number of bytes receied by the stream */ \ | ||
| 72 | + /* Records the total number of bytes received by the stream */ \ | ||
| 73 | 73 | V(BYTES_RECEIVED, bytes_received) \ | |
| 74 | 74 | /* Records the total number of bytes sent by the stream */ \ | |
| 75 | 75 | V(BYTES_SENT, bytes_sent) \ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments