summaryrefslogtreecommitdiff
path: root/js/flatbuffers.ts
diff options
context:
space:
mode:
Diffstat (limited to 'js/flatbuffers.ts')
-rw-r--r--js/flatbuffers.ts2
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;