From d2c49e02c3d5d3f5736fdab89c0754c0e14962d5 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Thu, 23 Mar 2017 03:53:12 -0700 Subject: [PATCH] Fix 'Response::join' docs. --- lib/src/response/response.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/src/response/response.rs b/lib/src/response/response.rs index 2302ebaf..68031529 100644 --- a/lib/src/response/response.rs +++ b/lib/src/response/response.rs @@ -1057,10 +1057,10 @@ impl<'r> Response<'r> { } } - // Sets `self`'s status and body to that of `other` if they are not already - // set in `self`. Any headers present in both `other` and `self` are - // adjoined. - // + /// Sets `self`'s status and body to that of `other` if they are not already + /// set in `self`. Any headers present in both `other` and `self` are + /// adjoined. + /// /// # Example /// /// ```rust