fix(rustup): switch to unstable features

This commit is contained in:
Sean McArthur
2015-01-31 11:52:09 -08:00
parent 4ad4c491d3
commit 3af8b687d4
15 changed files with 20 additions and 19 deletions

View File

@@ -484,7 +484,7 @@ impl fmt::Display for Box<HeaderFormat + Send + Sync> {
}
}
/// A wrapper around any Header with a Show impl that calls fmt_header.
/// A wrapper around any Header with a Display impl that calls fmt_header.
///
/// This can be used like so: `format!("{}", HeaderFormatter(&header))` to
/// get the representation of a Header which will be written to an
@@ -555,7 +555,7 @@ mod tests {
assert_eq!(accept, Some(Accept(vec![application_vendor, text_plain])));
}
#[derive(Clone, Show)]
#[derive(Clone, Debug)]
struct CrazyLength(Option<bool>, usize);
impl Header for CrazyLength {