From f29e6021648235e70dcaefdacafa20a854df2c72 Mon Sep 17 00:00:00 2001 From: Michael Noronha Date: Thu, 22 Mar 2018 14:03:45 -0400 Subject: [PATCH] Fix minor typo in rustdocs: 'avaiable' -> 'available'. --- lib/src/request/from_request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/request/from_request.rs b/lib/src/request/from_request.rs index 49192164..fc8d1580 100644 --- a/lib/src/request/from_request.rs +++ b/lib/src/request/from_request.rs @@ -114,7 +114,7 @@ impl IntoOutcome for Result { /// Extracts the [Route](/rocket/struct.Route.html) from the request if one /// 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) /// documentation. ///