Skip to content

Commit df67cd6

Browse files
committed
Cargo fmt
1 parent f80afd0 commit df67cd6

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

src/parser/mod.rs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14077,11 +14077,16 @@ impl<'a> Parser<'a> {
1407714077
Some(text) => {
1407814078
let hint = OptimizerHint {
1407914079
text: text.into(),
14080-
style: if let Whitespace::SingleLineComment { prefix, .. } = ws {
14081-
OptimizerHintStyle::SingleLine { prefix: prefix.clone() }
14080+
style: if let Whitespace::SingleLineComment {
14081+
prefix, ..
14082+
} = ws
14083+
{
14084+
OptimizerHintStyle::SingleLine {
14085+
prefix: prefix.clone(),
14086+
}
1408214087
} else {
1408314088
OptimizerHintStyle::MultiLine
14084-
}
14089+
},
1408514090
};
1408614091
// Consume the comment token
1408714092
self.next_token_no_skip();

0 commit comments

Comments
 (0)