From 9960217f0d2457e0754bd33e96ba69c5768eea4b Mon Sep 17 00:00:00 2001 From: bunsenstraat Date: Thu, 22 Sep 2022 11:26:07 +0200 Subject: [PATCH] Update code-parser-antlr-service.ts --- .../app/plugins/parser/services/code-parser-antlr-service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/remix-ide/src/app/plugins/parser/services/code-parser-antlr-service.ts b/apps/remix-ide/src/app/plugins/parser/services/code-parser-antlr-service.ts index 705ff6c2eb..4eb78ba9eb 100644 --- a/apps/remix-ide/src/app/plugins/parser/services/code-parser-antlr-service.ts +++ b/apps/remix-ide/src/app/plugins/parser/services/code-parser-antlr-service.ts @@ -77,7 +77,7 @@ export default class CodeParserAntlrService { const average = values.reduce((a, b) => a + b, 0) / values.length if (average > this.parserTreshHold) { this.cache[file].parsingEnabled = false - this.plugin.call('notification', 'toast','Some autocomplete features will be disabled temporarily because the file takes too long to process.') + this.plugin.call('notification', 'toast','Some autocomplete features will be temporarily disabled because the file takes too long to process.') } else { this.cache[file].parsingEnabled = true } @@ -283,4 +283,4 @@ export default class CodeParserAntlrService { return block } -} \ No newline at end of file +}