Skip to content

Commit e6a2ba6

Browse files
committed
style(policy): apply nightly fmt
1 parent 58a42f7 commit e6a2ba6

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/policy/semantic.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,8 +498,9 @@ impl<'a> MathParser<'a> {
498498
parser.next();
499499
let mut frame = frames.pop().unwrap();
500500
let op = match frame.kind {
501-
Kind::Group(op) => op
502-
.ok_or_else(|| malformed_math("group with no operator"))?,
501+
Kind::Group(op) => {
502+
op.ok_or_else(|| malformed_math("group with no operator"))?
503+
}
503504
Kind::Thresh => {
504505
return Err(malformed_math("')' closing a '#{...}' threshold"))
505506
}

0 commit comments

Comments
 (0)