Fix minor typo in rustdocs: 'avaiable' -> 'available'.

This commit is contained in:
Michael Noronha 2018-03-22 14:03:45 -04:00 committed by Sergio Benitez
parent f4e17688ee
commit f29e602164
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ impl<S, E> IntoOutcome<S, (Status, E), ()> for Result<S, E> {
/// Extracts the [Route](/rocket/struct.Route.html) from the request if one /// Extracts the [Route](/rocket/struct.Route.html) from the request if one
/// is available. If a route is not available, the request is forwarded. /// is available. If a route is not available, the request is forwarded.
/// ///
/// For information of when a route is avaiable, see the /// For information on when an `&Route` is available, see the
/// [`Request::route`](/rocket/struct.Request.html#method.route) /// [`Request::route`](/rocket/struct.Request.html#method.route)
/// documentation. /// documentation.
/// ///