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 194d591562..cd9e5d6cd5 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 @@ -76,7 +76,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 } @@ -286,4 +286,4 @@ export default class CodeParserAntlrService { return block } -} \ No newline at end of file +}