We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9661dae commit 05dd376Copy full SHA for 05dd376
src/Compiler/Microsoft.CodeAnalysis.Razor.Compiler/src/Language/RazorHtmlWriter.cs
@@ -341,7 +341,7 @@ private void WriteNonHtmlToken(SyntaxToken token)
341
}
342
343
/// <summary>
344
- /// Returns <see langword="true"/> if the new span starts after the last span.
+ /// Returns <see langword="true"/> if the new span starts immediately after the last span.
345
/// </summary>
346
private static bool TouchesLastSpan(SourceSpan newSpan, SourceSpan lastSpan)
347
=> newSpan.AbsoluteIndex == lastSpan.AbsoluteIndex + lastSpan.Length;
0 commit comments