diff --git a/src/base_object.h b/src/base_object.h index 9392e1baa14fe9..b61e19dff8b874 100644 --- a/src/base_object.h +++ b/src/base_object.h @@ -189,7 +189,7 @@ class BaseObject : public MemoryRetainer { // Indicates whether MakeWeak() has been called. bool wants_weak_jsobj = false; // Indicates whether Detach() has been called. If that is the case, this - // object will be destryoed once the strong pointer count drops to zero. + // object will be destroyed once the strong pointer count drops to zero. bool is_detached = false; // Reference to the original BaseObject. This is used by weak pointers. BaseObject* self = nullptr; diff --git a/src/cares_wrap.cc b/src/cares_wrap.cc index dbbdbc08380a7a..83308dbfafb2d1 100644 --- a/src/cares_wrap.cc +++ b/src/cares_wrap.cc @@ -1809,7 +1809,7 @@ void SetLocalAddress(const FunctionCallbackInfo& args) { return; } } else { - // No second arg specifed + // No second arg specified if (type0 == 4) { memset(&addr1, 0, sizeof(addr1)); ares_set_local_ip6(channel->cares_channel(), addr1); diff --git a/src/debug_utils.cc b/src/debug_utils.cc index aa97bfbe943bab..c4c476942eee77 100644 --- a/src/debug_utils.cc +++ b/src/debug_utils.cc @@ -355,7 +355,7 @@ void PrintLibuvHandleInformation(uv_loop_t* loop, FILE* stream) { void* first_field = nullptr; // `handle->data` might be any value, including `nullptr`, or something // cast from a completely different type; therefore, check that it’s - // dereferencable first. + // dereferenceable first. if (sym_ctx->IsMapped(handle->data)) first_field = *reinterpret_cast(handle->data); diff --git a/src/js_native_api_v8.cc b/src/js_native_api_v8.cc index 2aeb96a17a599a..1541f7eb36ea43 100644 --- a/src/js_native_api_v8.cc +++ b/src/js_native_api_v8.cc @@ -248,7 +248,7 @@ class RefBase : protected Finalizer, RefTracker { delete reference; } else { // defer until finalizer runs as - // it may alread be queued + // it may already be queued reference->_delete_self = true; } } @@ -416,7 +416,7 @@ class Reference : public RefBase { inline void SetWeak() { if (_secondPassParameter == nullptr) { // This means that the Reference has already been processed - // by the second pass calback, so its already been Finalized, do + // by the second pass callback, so its already been Finalized, do // nothing return; } @@ -455,9 +455,9 @@ class Reference : public RefBase { // second pass callback task. We have to make sure that parameter is kept // alive until the second pass callback is been invoked. In order to do // this and still allow our code to Finalize/delete the Reference during - // shutdown we have to use a seperately allocated parameter instead + // shutdown we have to use a separately allocated parameter instead // of a parameter within the Reference object itself. This is what - // is stored in _secondPassParameter and it is alocated in the + // is stored in _secondPassParameter and it is allocated in the // constructor for the Reference. static void SecondPassCallback( const v8::WeakCallbackInfo& data) { diff --git a/src/node_http2.cc b/src/node_http2.cc index 5e7b484886f801..57dac5f597590d 100644 --- a/src/node_http2.cc +++ b/src/node_http2.cc @@ -3101,7 +3101,7 @@ void Initialize(Local target, Local constants = Object::New(isolate); - // This does alocate one more slot than needed but it's not used. + // This does allocate one more slot than needed but it's not used. #define V(name) FIXED_ONE_BYTE_STRING(isolate, #name), Local error_code_names[] = { HTTP2_ERROR_CODES(V) diff --git a/src/node_i18n.cc b/src/node_i18n.cc index 3d36e4677c9ca9..63a6db7a49bc64 100644 --- a/src/node_i18n.cc +++ b/src/node_i18n.cc @@ -484,7 +484,7 @@ void ConverterObject::Decode(const FunctionCallbackInfo& args) { } ret = ToBufferEndian(env, &result); if (omit_initial_bom && !ret.IsEmpty()) { - // Peform `ret = ret.slice(2)`. + // Perform `ret = ret.slice(2)`. CHECK(ret.ToLocalChecked()->IsUint8Array()); Local orig_ret = ret.ToLocalChecked().As(); ret = Buffer::New(env, diff --git a/src/node_messaging.cc b/src/node_messaging.cc index 0a7d2551b2e094..9d17e670aec459 100644 --- a/src/node_messaging.cc +++ b/src/node_messaging.cc @@ -736,7 +736,7 @@ void MessagePort::OnMessage() { // interruption that were already present when the OnMessage() call was // first triggered, but at least 1000 messages because otherwise the // overhead of repeatedly triggering the uv_async_t instance becomes - // noticable, at least on Windows. + // noticeable, at least on Windows. // (That might require more investigation by somebody more familiar with // Windows.) TriggerAsync(); diff --git a/src/util.h b/src/util.h index a50cc1cf23b8a3..f0fc6097313fe8 100644 --- a/src/util.h +++ b/src/util.h @@ -406,7 +406,7 @@ class MaybeStackBuffer { buf_[length] = T(); } - // Make derefencing this object return nullptr. + // Make dereferencing this object return nullptr. // This method can be called multiple times throughout the lifetime of the // buffer, but once this has been called AllocateSufficientStorage() cannot // be used.