diff options
author | Edwin Cheng <[email protected]> | 2019-11-19 17:22:28 +0000 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2019-11-19 17:22:28 +0000 |
commit | 1d56b80250d43a7d263d2e9583871c85081261b6 (patch) | |
tree | ba089b257e57e066ba190bfc9ea228ef8366a07d /editors | |
parent | e29017139708174e922af7af614b1eb390952ecf (diff) |
Minor fix for outpu text formating
Diffstat (limited to 'editors')
-rw-r--r-- | editors/code/src/commands/expand_macro.ts | 2 |
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 | ||
76 | function code_format(expanded: ExpandedMacro): string { | 76 | function 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 | ||