Fix typo Requst->Request

This commit is contained in:
Greg Dallavalle
2017-01-12 12:33:33 -06:00
parent 7a4d59d197
commit 8f47126103

View File

@@ -301,7 +301,7 @@ impl Display for Error {
writeln!(f, "It is used as there are no Scopes defined for this method.")
},
Error::BadRequest(ref err) => {
try!(writeln!(f, "Bad Requst ({}): {}", err.error.code, err.error.message));
try!(writeln!(f, "Bad Request ({}): {}", err.error.code, err.error.message));
for err in err.error.errors.iter() {
try!(writeln!(f, " {}: {}, {}{}",
err.domain,