Skip to content

Commit

Permalink
Fix an unused_paren warning. (rust-lang#3909)
Browse files Browse the repository at this point in the history
  • Loading branch information
jugglerchris authored and topecongiro committed Nov 8, 2019
1 parent e4a50da commit fa73384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/items.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2591,7 +2591,7 @@ fn compute_budgets_for_params(
ret_str_len: usize,
fn_brace_style: FnBraceStyle,
force_vertical_layout: bool,
) -> Option<((usize, usize, Indent))> {
) -> Option<(usize, usize, Indent)> {
debug!(
"compute_budgets_for_params {} {:?}, {}, {:?}",
result.len(),
Expand Down

0 comments on commit fa73384

Please sign in to comment.