From ead7d2173b69acdde4d39a66ac04d34b28ba1e27 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Mon, 10 Dec 2018 10:14:06 -0500 Subject: [PATCH] rustfmt beta --- src/client.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.rs b/src/client.rs index 67878ae..50e6797 100644 --- a/src/client.rs +++ b/src/client.rs @@ -1201,12 +1201,12 @@ impl Connection { Status::Bad => { break Err(Error::Bad( expl.unwrap_or_else(|| "no explanation given".to_string()), - )) + )); } Status::No => { break Err(Error::No( expl.unwrap_or_else(|| "no explanation given".to_string()), - )) + )); } _ => break Err(Error::Parse(ParseError::Invalid(data.split_off(0)))), }