From 0a0bfceaa82e22b888dbb5a509ea13a1480372a7 Mon Sep 17 00:00:00 2001 From: Tobias Stolzmann Date: Thu, 14 Sep 2017 14:02:57 +0200 Subject: [PATCH] Fix typo in 'Outcome' docs: 'users' -> 'Users'. --- lib/src/outcome.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/outcome.rs b/lib/src/outcome.rs index 00bb9cd9..9e8c8f52 100644 --- a/lib/src/outcome.rs +++ b/lib/src/outcome.rs @@ -40,7 +40,7 @@ //! //! In Rocket, a `Failure` generally means that a request is taken out of normal //! processing. The request is then given to the catcher corresponding to some -//! status code. users can catch failures by requesting a type of `Result` +//! status code. Users can catch failures by requesting a type of `Result` //! or `Option` in request handlers. For example, if a user's handler looks //! like: //!