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 443fd37 commit b4430e7Copy full SHA for b4430e7
compiler/src/dotty/tools/dotc/printing/SyntaxHighlighting.scala
@@ -132,7 +132,7 @@ object SyntaxHighlighting {
132
else if (numberStart(n)) {
133
def isNumber(c: Char): Boolean =
134
c.isDigit || c == '\u0000' || (c == '.' && remaining.nonEmpty && remaining.head.isDigit)
135
- appendWhile(n, isNumber , literal)
+ appendWhile(n, isNumber, literal)
136
} else
137
newBuf += n; prev = n
138
}
0 commit comments