Skip to content

Commit 22199a2

Browse files
Merge pull request #3313 from dotty-staging/fix-ident-1
Fix indentation
2 parents 921a6fa + 4eeb143 commit 22199a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/src/dotty/tools/dotc/parsing/Parsers.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ object Parsers {
253253
/** If at end of file, issue an incompleteInputError.
254254
* Otherwise issue a syntax error and skip to next safe point.
255255
*/
256-
def syntaxErrorOrIncomplete(msg: => Message) =
256+
def syntaxErrorOrIncomplete(msg: => Message) =
257257
if (in.token == EOF) incompleteInputError(msg)
258258
else {
259259
syntaxError(msg)

0 commit comments

Comments
 (0)