diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2019-03-26 23:22:07 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-26 08:22:07 -0400 |
commit | c43cfedeba5d6ac96e1b1febed8549e750606e3f (patch) | |
tree | 7b3799259895acadf25294704ea03a9465051e9c /js/flatbuffers.ts | |
parent | ed2977d3c0e9ab3295a3bb47b844b2953d608197 (diff) |
namespace reorg: libdeno and DenoCore to Deno.core (#1998)
Diffstat (limited to 'js/flatbuffers.ts')
-rw-r--r-- | js/flatbuffers.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/flatbuffers.ts b/js/flatbuffers.ts index 73f3ceb82..f05bd1c55 100644 --- a/js/flatbuffers.ts +++ b/js/flatbuffers.ts @@ -17,7 +17,7 @@ globalBuilder.inUse = false; // This is a wrapper around the real Builder . // The purpose is to reuse a single ArrayBuffer for every message. // We can do this because the "control" messages sent to the privileged -// side are guaranteed to be used during the call to libdeno.send(). +// side are guaranteed to be used during the call to Deno.core.send(). export function createBuilder(): Builder { // eslint-disable-next-line @typescript-eslint/no-explicit-any const gb = globalBuilder as any; |