diff --git a/examples/client_json.rs b/examples/client_json.rs index 14b81dbf..180306ac 100644 --- a/examples/client_json.rs +++ b/examples/client_json.rs @@ -64,7 +64,7 @@ struct User { name: String, } -// Define a type so we can return multile types of errors +// Define a type so we can return multiple types of errors enum FetchError { Http(hyper::Error), Json(serde_json::Error), @@ -80,4 +80,4 @@ impl From for FetchError { fn from(err: serde_json::Error) -> FetchError { FetchError::Json(err) } -} \ No newline at end of file +}