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: nodejs#8736
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Ilkka Myller <ilkka.myller@nodefield.com>
  • Loading branch information
danbev authored and geek committed Sep 26, 2016
1 parent 308fc8f commit b8b90bb
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 b8b90bb

Please sign in to comment.