File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11/*
2- * Copyright (c) 2016-2017 Moddable Tech, Inc.
2+ * Copyright (c) 2016-2026 Moddable Tech, Inc.
33 *
44 * This file is part of the Moddable SDK Runtime.
55 *
@@ -370,7 +370,7 @@ void fx_SharedArrayBuffer(txMachine* the)
370370 property -> value .host .data = fxCreateSharedChunk ((txInteger )byteLength );
371371 if (!property -> value .host .data ) {
372372 property -> value .host .variant .destructor = NULL ;
373- mxRangeError ("cannot allocate SharedArrayBuffer insatnce " );
373+ mxRangeError ("cannot allocate SharedArrayBuffer instance " );
374374 }
375375 property -> value .host .variant .destructor = fxReleaseSharedChunk ;
376376 property = property -> next = fxNewSlot (the );
@@ -422,7 +422,7 @@ void fx_SharedArrayBuffer_prototype_grow(txMachine* the)
422422 mxRangeError ("newLength < byteLength" );
423423 if (newByteLength > maxByteLength )
424424 mxRangeError ("newLength > maxByteLength" );
425- mxRangeError ("cannot grow SharedArrayBuffer insatnce " );
425+ mxRangeError ("cannot grow SharedArrayBuffer instance " );
426426}
427427
428428void fx_SharedArrayBuffer_prototype_slice (txMachine * the )
You can’t perform that action at this time.
0 commit comments