Make `cargo fmt` happy

pull/347/head
Daniel Abramov 2 years ago
parent e758f7dc2a
commit 87e9f576af
  1. 4
      src/handshake/client.rs

@ -87,8 +87,8 @@ impl<S: Read + Write> HandshakeRole for ClientHandshake<S> {
Ok(r) => r,
Err(Error::Http(mut e)) => {
*e.body_mut() = Some(tail);
return Err(Error::Http(e))
},
return Err(Error::Http(e));
}
Err(e) => return Err(e),
};

Loading…
Cancel
Save