Skip to content

Commit 8c81332

Browse files
committed
Fix newline indentation
1 parent 4170b22 commit 8c81332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: parser/src/soft_keywords.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ where
102102
let mut seen_equal = false;
103103
while let Some(Ok((tok, _))) = self.underlying.peek() {
104104
match tok {
105-
Tok::Newline => break,
105+
Tok::Newline => break,
106106
Tok::Name { .. } |
107107
// We treat a soft keyword token following a type token as a
108108
// name to support cases like `type type = int` or `type match = int`

0 commit comments

Comments
 (0)