From 8f47126103eb72d753eb5c24a24afb125c912079 Mon Sep 17 00:00:00 2001 From: Greg Dallavalle Date: Thu, 12 Jan 2017 12:33:33 -0600 Subject: [PATCH] Fix typo Requst->Request --- src/rust/api/cmn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust/api/cmn.rs b/src/rust/api/cmn.rs index 782f0fdd3b..906dbf900f 100644 --- a/src/rust/api/cmn.rs +++ b/src/rust/api/cmn.rs @@ -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,