Don't use unstable rustfmt options

This commit is contained in:
Jonas Platte 2020-04-24 12:32:25 +02:00
parent 6fa05a1a6f
commit cb5f8ffc39
No known key found for this signature in database
GPG Key ID: 7D261D771D915378
2 changed files with 2 additions and 3 deletions

View File

@ -1,4 +1,3 @@
match_block_trailing_comma = true
max_width = 80
newline_style = "Unix"
reorder_imports = true

View File

@ -239,7 +239,7 @@ where
key: value.serialize(key_serializer)?,
};
Ok(())
},
}
PairState::WaitingForValue { key } => {
let result = {
let value_sink = ValueSink::new(self.urlencoder, &key);
@ -252,7 +252,7 @@ where
self.state = PairState::WaitingForValue { key };
}
result
},
}
PairState::Done => Err(Error::done()),
}
}