Skip to content

Commit 21fca53

Browse files
committed
format code
Signed-off-by: Qingpeng Li <qingpeng9802@gmail.com>
1 parent ec69999 commit 21fca53

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

syntaxes/scripts/gen_record.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ function writeTokenLine(token, outputLines, prevScope) {
8787
// add indicator
8888
outputLines.push(startingSpaces + locatingString);
8989
// add scope name
90-
outputLines.push(`${startingSpaces}${scope}`);
90+
outputLines.push(startingSpaces + scope);
9191
return scope;
9292
}
9393
/** iterate the lines of the text and produce the record */

syntaxes/scripts/gen_record.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function writeTokenLine(token: vt.IToken, outputLines: string[], prevScope: stri
113113
// add indicator
114114
outputLines.push(startingSpaces + locatingString);
115115
// add scope name
116-
outputLines.push(`${startingSpaces}${scope}`);
116+
outputLines.push(startingSpaces + scope);
117117

118118
return scope;
119119
}

0 commit comments

Comments
 (0)