Fix 'Response::join' docs.

This commit is contained in:
Sergio Benitez 2017-03-23 03:53:12 -07:00
parent e006f3f83e
commit d2c49e02c3
1 changed files with 4 additions and 4 deletions

View File

@ -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