Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 4, 2022
1 parent d650adb commit a624282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tokio-postgres/src/query.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ where
{
let (param_formats, params): (Vec<_>, Vec<_>) = params
.into_iter()
.map(|p| { (p.borrow_to_sql().encode_format() as i16, p) })
.map(|p| (p.borrow_to_sql().encode_format() as i16, p))
.unzip();
let params = params.into_iter();

Expand Down

0 comments on commit a624282

Please sign in to comment.