Skip to content

Commit

Permalink
Format JSON benchmark code
Browse files Browse the repository at this point in the history
  • Loading branch information
murarth authored and Geal committed Apr 25, 2018
1 parent a1db24b commit 38707f6
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions benches/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,9 @@ named!(
)
);

named!(boolean<bool>,
alt!(
value!(false, tag!("false")) |
value!(true, tag!("true"))
)
named!(
boolean<bool>,
alt!(value!(false, tag!("false")) | value!(true, tag!("true")))
);

named!(
Expand Down

0 comments on commit 38707f6

Please sign in to comment.