aboutsummaryrefslogtreecommitdiff
path: root/editors/code/src/commands
diff options
context:
space:
mode:
authorEdwin Cheng <[email protected]>2019-11-19 17:22:28 +0000
committerEdwin Cheng <[email protected]>2019-11-19 17:22:28 +0000
commit1d56b80250d43a7d263d2e9583871c85081261b6 (patch)
treeba089b257e57e066ba190bfc9ea228ef8366a07d /editors/code/src/commands
parente29017139708174e922af7af614b1eb390952ecf (diff)
Minor fix for outpu text formating
Diffstat (limited to 'editors/code/src/commands')
-rw-r--r--editors/code/src/commands/expand_macro.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/commands/expand_macro.ts b/editors/code/src/commands/expand_macro.ts
index 1fa2cf739..34e0c8fb3 100644
--- a/editors/code/src/commands/expand_macro.ts
+++ b/editors/code/src/commands/expand_macro.ts
@@ -75,7 +75,7 @@ interface ExpandedMacro {
75 75
76function code_format(expanded: ExpandedMacro): string { 76function code_format(expanded: ExpandedMacro): string {
77 let result = `// Recursive expansion of ${expanded.name}! macro\n`; 77 let result = `// Recursive expansion of ${expanded.name}! macro\n`;
78 result += '='.repeat(result.length); 78 result += '// ' + '='.repeat(result.length - 3);
79 result += '\n\n'; 79 result += '\n\n';
80 result += expanded.expansion; 80 result += expanded.expansion;
81 81