Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: use transferred consistently #36340

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/base_object.h
Expand Up @@ -116,13 +116,13 @@ class BaseObject : public MemoryRetainer {
// the current object:
// - kUntransferable:
// No transfer is possible, either because this type of BaseObject does
// not know how to be transfered, or because it is not in a state in
// not know how to be transferred, or because it is not in a state in
// which it is possible to do so (e.g. because it has already been
// transfered).
// transferred).
// - kTransferable:
// This object can be transfered in a destructive fashion, i.e. will be
// This object can be transferred in a destructive fashion, i.e. will be
// rendered unusable on the sending side of the channel in the process
// of being transfered. (In C++ this would be referred to as movable but
// of being transferred. (In C++ this would be referred to as movable but
// not copyable.) Objects of this type need to be listed in the
// `transferList` argument of the relevant postMessage() call in order to
// make sure that they are not accidentally destroyed on the sending side.
Expand Down
2 changes: 1 addition & 1 deletion src/node_messaging.h
Expand Up @@ -16,7 +16,7 @@ class MessagePort;
typedef MaybeStackBuffer<v8::Local<v8::Value>, 8> TransferList;

// Used to represent the in-flight structure of an object that is being
// transfered or cloned using postMessage().
// transferred or cloned using postMessage().
class TransferData : public MemoryRetainer {
public:
// Deserialize this object on the receiving end after a .postMessage() call.
Expand Down
2 changes: 1 addition & 1 deletion src/quic/node_quic_session.h
Expand Up @@ -735,7 +735,7 @@ class QuicApplication : public MemoryRetainer,

// QUIC sessions are logical connections that exchange data
// back and forth between peer endpoints via UDP. Every QuicSession
// has an associated TLS context and all data transfered between
// has an associated TLS context and all data transferred between
// the peers is always encrypted. Unlike TLS over TCP, however,
// The QuicSession uses a session identifier that is independent
// of both the local *and* peer IP address, allowing a QuicSession
Expand Down