Revert whitespace changes from #194

This commit is contained in:
David Tolnay 2017-07-22 13:34:12 -07:00
parent d44adb148e
commit 2f1ab0a0e5
1 changed files with 3 additions and 3 deletions

View File

@ -86,9 +86,9 @@ impl From<IoError> for Error {
impl fmt::Display for ErrorKind {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match *self {
ErrorKind::Io(ref ioerr) =>
ErrorKind::Io(ref ioerr) =>
write!(fmt, "Io: {}", ioerr),
ErrorKind::InvalidEncoding{desc, detail: None}=>
ErrorKind::InvalidEncoding{desc, detail: None}=>
write!(fmt, "InvalidEncoding: {}", desc),
ErrorKind::InvalidEncoding{desc, detail: Some(ref detail)}=>
write!(fmt, "InvalidEncoding: {} ({})", desc, detail),
@ -195,7 +195,7 @@ pub fn serialized_size_bounded<T: ?Sized>(value: &T, max: u64) -> Option<u64>
where T: serde::Serialize
{
let mut size_counter = SizeChecker {
size_limit: CountSize { total: 0, limit: Some(max) }
size_limit: CountSize { total: 0, limit: Some(max) }
};
match value.serialize(&mut size_counter) {