diff options
Diffstat (limited to 'libdeno/api.cc')
-rw-r--r-- | libdeno/api.cc | 2 |
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; } |