Fix typo in manage docs: referes -> refers.

This commit is contained in:
Sergio Benitez 2017-02-06 10:40:43 -08:00
parent c7db553286
commit 46f753e128
1 changed files with 1 additions and 1 deletions

View File

@ -481,7 +481,7 @@ impl Rocket {
/// Add `state` to the state managed by this instance of Rocket.
///
/// This method can be called any number of times as long as each call
/// referes to a different `T`.
/// refers to a different `T`.
///
/// Managed state can be retrieved by any request handler via the
/// [State](/rocket/struct.State.html) request guard. In particular, if a