diff --git a/apps/remix-ide/src/app/plugins/parser/code-parser.tsx b/apps/remix-ide/src/app/plugins/parser/code-parser.tsx index a6047aade5..65efcf35b5 100644 --- a/apps/remix-ide/src/app/plugins/parser/code-parser.tsx +++ b/apps/remix-ide/src/app/plugins/parser/code-parser.tsx @@ -711,8 +711,8 @@ export class CodeParser extends Plugin { if ('documentation' in node && node.documentation && (node.documentation as any).text) { let text = '' ; (node.documentation as any).text.split('\n').forEach((line) => { - text += `${line.trim()}\n` - }) + text += `${line.trim()}\n` + }) return text } }