Skip to content

Commit 85af466

Browse files
authored
Add missing paren to SyntaxSerializer (#11968)
1 parent 97fff7c commit 85af466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/Syntax/SyntaxSerializer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private void WriteNode(SyntaxNode node)
105105

106106
protected virtual void WriteSpan(TextSpan span)
107107
{
108-
WriteValue($"[{span.Start}..{span.End}{Separator}Width: {span.End - span.Start}");
108+
WriteValue($"[{span.Start}..{span.End}){Separator}Width: {span.End - span.Start}");
109109
}
110110

111111
private void WriteRazorDirective(RazorDirectiveSyntax node)

0 commit comments

Comments
 (0)