diff options
author | Joseph <jngugi88@gmail.com> | 2018-10-24 18:54:34 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-24 08:54:34 -0700 |
commit | d2df67e8221877a14b77d5e185367717afe503f8 (patch) | |
tree | fc621b1dac796bf248093b5a85731d62f055b7ad /js/flatbuffers.ts | |
parent | 5fbe6a242c36b3836fe646ab037a03a6c80e32d8 (diff) |
fix typos (#1083)
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 bfb71f9d1..926cb7425 100644 --- a/js/flatbuffers.ts +++ b/js/flatbuffers.ts @@ -15,7 +15,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 guarenteed to be used during the call to libdeno.send(). +// side are guaranteed to be used during the call to libdeno.send(). export function createBuilder(): Builder { // tslint:disable-next-line:no-any const gb = globalBuilder as any; |