summaryrefslogtreecommitdiff
path: root/libdeno/api.cc
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-26 23:22:07 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-26 08:22:07 -0400
commitc43cfedeba5d6ac96e1b1febed8549e750606e3f (patch)
tree7b3799259895acadf25294704ea03a9465051e9c /libdeno/api.cc
parented2977d3c0e9ab3295a3bb47b844b2953d608197 (diff)
namespace reorg: libdeno and DenoCore to Deno.core (#1998)
Diffstat (limited to 'libdeno/api.cc')
-rw-r--r--libdeno/api.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libdeno/api.cc b/libdeno/api.cc
index ab87382c3..fa1fe92f9 100644
--- a/libdeno/api.cc
+++ b/libdeno/api.cc
@@ -177,7 +177,7 @@ void deno_respond(Deno* d_, void* user_data, deno_buf buf) {
auto recv_ = d->recv_.Get(d->isolate_);
if (recv_.IsEmpty()) {
- d->last_exception_ = "libdeno.recv_ has not been called.";
+ d->last_exception_ = "Deno.core.recv has not been called.";
return;
}