mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-29 21:35:20 +00:00
Minor fix for outpu text formating
This commit is contained in:
parent
e290171397
commit
1d56b80250
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ interface ExpandedMacro {
|
||||||
|
|
||||||
function code_format(expanded: ExpandedMacro): string {
|
function code_format(expanded: ExpandedMacro): string {
|
||||||
let result = `// Recursive expansion of ${expanded.name}! macro\n`;
|
let result = `// Recursive expansion of ${expanded.name}! macro\n`;
|
||||||
result += '='.repeat(result.length);
|
result += '// ' + '='.repeat(result.length - 3);
|
||||||
result += '\n\n';
|
result += '\n\n';
|
||||||
result += expanded.expansion;
|
result += expanded.expansion;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue