Skip to content

Commit

Permalink
src: fix typo in error message
Browse files Browse the repository at this point in the history
PR-URL: #875
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Vladimir Kurchatkin <vladimir.kurchatkin@gmail.com>
  • Loading branch information
bnoordhuis committed Feb 18, 2015
1 parent fb28c91 commit a956791
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node.cc
Expand Up @@ -1030,7 +1030,7 @@ Handle<Value> MakeCallback(Environment* env,
try_catch.SetVerbose(false);
env->async_hooks_pre_function()->Call(object, 0, nullptr);
if (try_catch.HasCaught())
FatalError("node:;MakeCallback", "pre hook threw");
FatalError("node::MakeCallback", "pre hook threw");
try_catch.SetVerbose(true);
}

Expand Down

0 comments on commit a956791

Please sign in to comment.