Skip to content

Commit

Permalink
src: fix minor typo in comments
Browse files Browse the repository at this point in the history
Correcting a couple of minor spelling typos in comments.

PR-URL: #8736
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: Michaël Zasso <[email protected]>
Reviewed-By: Ilkka Myller <[email protected]>
  • Loading branch information
danbev authored and Fishrock123 committed Oct 11, 2016
1 parent 41ad6e3 commit 8be818e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/node_contextify.cc
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ class ContextifyContext {
ContextifyContext* ctx;
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Data().As<Object>());

// Stil initializing
// Still initializing
if (ctx->context_.IsEmpty())
return;

Expand Down Expand Up @@ -381,7 +381,7 @@ class ContextifyContext {
ContextifyContext* ctx;
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Data().As<Object>());

// Stil initializing
// Still initializing
if (ctx->context_.IsEmpty())
return;

Expand All @@ -407,7 +407,7 @@ class ContextifyContext {
ContextifyContext* ctx;
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Data().As<Object>());

// Stil initializing
// Still initializing
if (ctx->context_.IsEmpty())
return;

Expand All @@ -434,7 +434,7 @@ class ContextifyContext {
ContextifyContext* ctx;
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Data().As<Object>());

// Stil initializing
// Still initializing
if (ctx->context_.IsEmpty())
return;

Expand All @@ -450,7 +450,7 @@ class ContextifyContext {
ContextifyContext* ctx;
ASSIGN_OR_RETURN_UNWRAP(&ctx, args.Data().As<Object>());

// Stil initializing
// Still initializing
if (ctx->context_.IsEmpty())
return;

Expand Down

0 comments on commit 8be818e

Please sign in to comment.