Make `cargo fmt` happy

This commit is contained in:
Daniel Abramov 2023-04-12 16:09:09 +02:00
parent e758f7dc2a
commit 87e9f576af
1 changed files with 2 additions and 2 deletions

View File

@ -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),
};