File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -111,13 +111,13 @@ class BaseObject : public MemoryRetainer {
111
111
// the current object:
112
112
// - kUntransferable:
113
113
// No transfer is possible, either because this type of BaseObject does
114
- // not know how to be transfered , or because it is not in a state in
114
+ // not know how to be transferred , or because it is not in a state in
115
115
// which it is possible to do so (e.g. because it has already been
116
- // transfered ).
116
+ // transferred ).
117
117
// - kTransferable:
118
- // This object can be transfered in a destructive fashion, i.e. will be
118
+ // This object can be transferred in a destructive fashion, i.e. will be
119
119
// rendered unusable on the sending side of the channel in the process
120
- // of being transfered . (In C++ this would be referred to as movable but
120
+ // of being transferred . (In C++ this would be referred to as movable but
121
121
// not copyable.) Objects of this type need to be listed in the
122
122
// `transferList` argument of the relevant postMessage() call in order to
123
123
// make sure that they are not accidentally destroyed on the sending side.
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class MessagePort;
16
16
typedef MaybeStackBuffer<v8::Local<v8::Value>, 8 > TransferList;
17
17
18
18
// Used to represent the in-flight structure of an object that is being
19
- // transfered or cloned using postMessage().
19
+ // transferred or cloned using postMessage().
20
20
class TransferData : public MemoryRetainer {
21
21
public:
22
22
// Deserialize this object on the receiving end after a .postMessage() call.
You can’t perform that action at this time.
0 commit comments