Skip to content

Commit 685aac9

Browse files
Reformatted code
1 parent 0f87df0 commit 685aac9

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/parser/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2961,8 +2961,7 @@ impl<'a> Parser<'a> {
29612961
trim_what: Some(trim_what),
29622962
trim_characters: None,
29632963
})
2964-
} else if self.dialect.supports_comma_separated_trim()
2965-
&& self.consume_token(&Token::Comma)
2964+
} else if self.dialect.supports_comma_separated_trim() && self.consume_token(&Token::Comma)
29662965
{
29672966
let characters = self.parse_comma_separated(Parser::parse_expr)?;
29682967
self.expect_token(&Token::RParen)?;

0 commit comments

Comments
 (0)