From e7b1ea88a60d296254a3b8421d2e2b18fd153faa Mon Sep 17 00:00:00 2001 From: Aniket <30843294+Aniket-Engg@users.noreply.github.com> Date: Fri, 3 Jan 2020 18:13:01 +0530 Subject: [PATCH] Update compiler-worker.ts --- remix-solidity/src/compiler/compiler-worker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remix-solidity/src/compiler/compiler-worker.ts b/remix-solidity/src/compiler/compiler-worker.ts index 7663343fb6..480fbb8524 100644 --- a/remix-solidity/src/compiler/compiler-worker.ts +++ b/remix-solidity/src/compiler/compiler-worker.ts @@ -6,7 +6,7 @@ var compileJSON: ((input: CompilerInput) => string) | null = (input) => { return var missingInputs: string[] = [] // 'DedicatedWorkerGlobalScope' object (the Worker global scope) is accessible through the self keyword -// 'dom' and 'webworker' library files can not be included together +// 'dom' and 'webworker' library files can't be included together https://github.com/microsoft/TypeScript/issues/20595 export default (self) => { self.addEventListener('message', (e) => { const data: MessageToWorker = e.data