Skip to content

Commit

Permalink
Remove inconsistent braces (#397)
Browse files Browse the repository at this point in the history
  • Loading branch information
Proximyst authored and Lakelezz committed Sep 22, 2018
1 parent d529cf7 commit ccfa7fd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/http/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ impl Display for Error {
impl StdError for Error {
fn description(&self) -> &str {
match *self {
Error::UnsuccessfulRequest(_) => {
"A non-successful response status code was received"
},
Error::UnsuccessfulRequest(_) => "A non-successful response status code was received",
Error::RateLimitI64 => "Error decoding a header into an i64",
Error::RateLimitUtf8 => "Error decoding a header from UTF-8",
}
Expand Down

0 comments on commit ccfa7fd

Please sign in to comment.