Fix a few impl stability attributes

The versions show up in rustdoc.
This commit is contained in:
Oliver Middleton
2017-01-29 13:31:47 +00:00
parent 010c3e25c4
commit 9128f6100c
28 changed files with 116 additions and 93 deletions

View File

@@ -106,7 +106,10 @@ impl Iterator for LookupHost {
fn next(&mut self) -> Option<SocketAddr> { self.0.next() }
}
#[stable(feature = "std_debug", since = "1.15.0")]
#[unstable(feature = "lookup_host", reason = "unsure about the returned \
iterator and returning socket \
addresses",
issue = "27705")]
impl fmt::Debug for LookupHost {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.pad("LookupHost { .. }")