From 5145f5f7ca156217e7788f95fbcbc1d90cd6dd6a Mon Sep 17 00:00:00 2001 From: Joshua Rombauer Date: Mon, 4 Sep 2017 18:47:51 +0200 Subject: [PATCH] Clarifies on_request Fairing documentation --- lib/src/fairing/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/src/fairing/mod.rs b/lib/src/fairing/mod.rs index 17103c81..dabbd6d3 100644 --- a/lib/src/fairing/mod.rs +++ b/lib/src/fairing/mod.rs @@ -140,8 +140,8 @@ pub use self::info_kind::{Info, Kind}; /// It may not, however, abort or respond directly to the request; these /// issues are better handled via [request /// guards](/rocket/request/trait.FromRequest.html) or via response -/// callbacks. A modified request is routed as if it was the original -/// request. +/// callbacks. Any modifications to a request are persisted and can +/// potentially alter how a request is routed. /// /// * **Response (`on_response`)** ///