File tree 5 files changed +5
-5
lines changed
5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ class AsyncWrap : public BaseObject {
111
111
ProviderType provider,
112
112
double execution_async_id = kInvalidAsyncId );
113
113
114
- // This constructor creates a reuseable instance where user is responsible
114
+ // This constructor creates a reusable instance where user is responsible
115
115
// to call set_provider_type() and AsyncReset() before use.
116
116
AsyncWrap (Environment* env, v8::Local<v8::Object> object);
117
117
Original file line number Diff line number Diff line change @@ -885,7 +885,7 @@ class Environment : public MemoryRetainer {
885
885
886
886
inline IsolateData* isolate_data () const ;
887
887
888
- // Utilites that allocate memory using the Isolate's ArrayBuffer::Allocator.
888
+ // Utilities that allocate memory using the Isolate's ArrayBuffer::Allocator.
889
889
// In particular, using AllocateManaged() will provide a RAII-style object
890
890
// with easy conversion to `Buffer` and `ArrayBuffer` objects.
891
891
inline AllocatedBuffer AllocateManaged (size_t size, bool checked = true );
Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ MaybeLocal<Value> RunBootstrapping(Environment* env) {
330
330
return MaybeLocal<Value>();
331
331
332
332
// Make sure that no request or handle is created during bootstrap -
333
- // if necessary those should be done in pre-exeuction .
333
+ // if necessary those should be done in pre-execution .
334
334
// TODO(joyeecheung): print handles/requests before aborting
335
335
CHECK (env->req_wrap_queue ()->IsEmpty ());
336
336
CHECK (env->handle_wrap_queue ()->IsEmpty ());
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ namespace node {
15
15
// We may be able to create an abstract class to reuse some of the routines.
16
16
class NodeMainInstance {
17
17
public:
18
- // To create a main instance that does not own the isoalte ,
18
+ // To create a main instance that does not own the isolate ,
19
19
// The caller needs to do:
20
20
//
21
21
// Isolate* isolate = Isolate::Allocate();
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ MaybeLocal<Function> NativeModuleEnv::LookupAndCompile(
152
152
}
153
153
154
154
// TODO(joyeecheung): It is somewhat confusing that Class::Initialize
155
- // is used to initilaize to the binding, but it is the current convention.
155
+ // is used to initialize to the binding, but it is the current convention.
156
156
// Rename this across the code base to something that makes more sense.
157
157
void NativeModuleEnv::Initialize (Local<Object> target,
158
158
Local<Value> unused,
You can’t perform that action at this time.
0 commit comments