Clarifies on_request Fairing documentation

This commit is contained in:
Joshua Rombauer 2017-09-04 18:47:51 +02:00
parent 237370533c
commit 5145f5f7ca
No known key found for this signature in database
GPG Key ID: 9A05DDC07AF4F781
1 changed files with 2 additions and 2 deletions

View File

@ -140,8 +140,8 @@ pub use self::info_kind::{Info, Kind};
/// It may not, however, abort or respond directly to the request; these /// It may not, however, abort or respond directly to the request; these
/// issues are better handled via [request /// issues are better handled via [request
/// guards](/rocket/request/trait.FromRequest.html) or via response /// guards](/rocket/request/trait.FromRequest.html) or via response
/// callbacks. A modified request is routed as if it was the original /// callbacks. Any modifications to a request are persisted and can
/// request. /// potentially alter how a request is routed.
/// ///
/// * **Response (`on_response`)** /// * **Response (`on_response`)**
/// ///