Fix spelling of "instantiated" in rustdocs.

This commit is contained in:
Christian Legnitto 2017-07-17 22:03:15 -07:00 committed by Sergio Benitez
parent 5720748557
commit 362afdc445
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ use http::hyper::mime::Mime;
///
/// ## Example
///
/// A Content-Type of `text/html; charset=utf-8` can be insantiated via the
/// A Content-Type of `text/html; charset=utf-8` can be instantiated via the
/// `HTML` constant:
///
/// ```rust

View File

@ -58,7 +58,7 @@ impl Source {
///
/// ## Example
///
/// A media type of `application/json` can be insantiated via the `JSON`
/// A media type of `application/json` can be instantiated via the `JSON`
/// constant:
///
/// ```rust

View File

@ -52,7 +52,7 @@ impl StatusClass {
///
/// ## Example
///
/// A status of `200 OK` can be insantiated via the `Ok` constant:
/// A status of `200 OK` can be instantiated via the `Ok` constant:
///
/// ```rust
/// use rocket::http::Status;
@ -61,7 +61,7 @@ impl StatusClass {
/// let ok = Status::Ok;
/// ```
///
/// A status of `404 Not Found` can be insantiated via the `NotFound` constant:
/// A status of `404 Not Found` can be instantiated via the `NotFound` constant:
///
/// ```rust
/// use rocket::http::Status;