diff options
Diffstat (limited to 'src/crypto/emscInterface.ts')
-rw-r--r-- | src/crypto/emscInterface.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/emscInterface.ts b/src/crypto/emscInterface.ts index ce52c88bd..0662f4a71 100644 --- a/src/crypto/emscInterface.ts +++ b/src/crypto/emscInterface.ts @@ -189,7 +189,7 @@ export class HashContext implements ArenaObject { /** - * Arena object that points to an allocaed block of memory. + * Arena object that points to an allocated block of memory. */ abstract class MallocArenaObject implements ArenaObject { protected _nativePtr: number | undefined = undefined; @@ -303,7 +303,7 @@ class SyncArena extends SimpleArena { } } -const arenaStack: Arena[] = []; +export const arenaStack: Arena[] = []; arenaStack.push(new SyncArena()); |