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 +}