| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent ca8db41 commit e7b2d91
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -116,13 +116,13 @@ class BaseObject : public MemoryRetainer { | |||
| 116 | 116 | // the current object: | |
| 117 | 117 | // - kUntransferable: | |
| 118 | 118 | // No transfer is possible, either because this type of BaseObject does | |
| 119 | - // not know how to be transfered, or because it is not in a state in | ||
| 119 | + // not know how to be transferred, or because it is not in a state in | ||
| 120 | 120 | // which it is possible to do so (e.g. because it has already been | |
| 121 | - // transfered). | ||
| 121 | + // transferred). | ||
| 122 | 122 | // - kTransferable: | |
| 123 | - // This object can be transfered in a destructive fashion, i.e. will be | ||
| 123 | + // This object can be transferred in a destructive fashion, i.e. will be | ||
| 124 | 124 | // rendered unusable on the sending side of the channel in the process | |
| 125 | - // of being transfered. (In C++ this would be referred to as movable but | ||
| 125 | + // of being transferred. (In C++ this would be referred to as movable but | ||
| 126 | 126 | // not copyable.) Objects of this type need to be listed in the | |
| 127 | 127 | // `transferList` argument of the relevant postMessage() call in order to | |
| 128 | 128 | // make sure that they are not accidentally destroyed on the sending side. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,7 +20,7 @@ class MessagePort; | |||
| 20 | 20 | typedef MaybeStackBuffer<v8::Local<v8::Value>, 8> TransferList; | |
| 21 | 21 | ||
| 22 | 22 | // Used to represent the in-flight structure of an object that is being | |
| 23 | - // transfered or cloned using postMessage(). | ||
| 23 | + // transferred or cloned using postMessage(). | ||
| 24 | 24 | class TransferData : public MemoryRetainer { | |
| 25 | 25 | public: | |
| 26 | 26 | // Deserialize this object on the receiving end after a .postMessage() call. | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -735,7 +735,7 @@ class QuicApplication : public MemoryRetainer, | |||
| 735 | 735 | ||
| 736 | 736 | // QUIC sessions are logical connections that exchange data | |
| 737 | 737 | // back and forth between peer endpoints via UDP. Every QuicSession | |
| 738 | - // has an associated TLS context and all data transfered between | ||
| 738 | + // has an associated TLS context and all data transferred between | ||
| 739 | 739 | // the peers is always encrypted. Unlike TLS over TCP, however, | |
| 740 | 740 | // The QuicSession uses a session identifier that is independent | |
| 741 | 741 | // of both the local *and* peer IP address, allowing a QuicSession | |
| Back | FazBrowse Home | New Git URL |
0 commit comments