Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
basro committed May 19, 2024
1 parent 92bf370 commit 96f7314
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion internal/stylance-core/src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ fn at_rule<'s>(input: &mut &'s str) -> PResult<Vec<CssFragment<'s>>> {
}

match identifier {
"media" | "layer" | "container" => cut_err(terminated(style_rule_block_contents, '}')).parse_next(input),
"media" | "layer" | "container" => {
cut_err(terminated(style_rule_block_contents, '}')).parse_next(input)
}
_ => {
cut_err(terminated(unknown_block_contents, '}')).parse_next(input)?;
Ok(vec![])
Expand Down

0 comments on commit 96f7314

Please sign in to comment.