From 5abb8d99b48225134584c2264535c55b1ed31658 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Thu, 2 Feb 2017 18:16:57 -0800 Subject: [PATCH] Clarify manage method docs. --- lib/src/rocket.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/rocket.rs b/lib/src/rocket.rs index 456e0e14..998416e6 100644 --- a/lib/src/rocket.rs +++ b/lib/src/rocket.rs @@ -483,6 +483,9 @@ 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`. + /// /// Managed state can be retrieved by any request handler via the /// [State](/rocket/struct.State.html) request guard. In particular, if a /// value of type `T` is managed by Rocket, adding `State` to the list of