summary refs log tree commit diff
path: root/src/libstd/net
diff options
context:
space:
mode:
authorCorey Farwell <coreyf@rwell.org>2017-02-05 09:14:45 -0500
committerGitHub <noreply@github.com>2017-02-05 09:14:45 -0500
commit65b24779a95d306ac9abd73bf430380e925e765e (patch)
tree57ea8308bbbb9640b475daa483f7dd232ea531a4 /src/libstd/net
parent5cfd5eda97d69e04cd4f92d500dbcbbc114178f4 (diff)
parent9128f6100c9bfe2c2c22d85ccec92f01166f5d25 (diff)
downloadrust-65b24779a95d306ac9abd73bf430380e925e765e.tar.gz
rust-65b24779a95d306ac9abd73bf430380e925e765e.zip
Rollup merge of #39393 - ollie27:stab_impls, r=alexcrichton
Fix a few impl stability attributes

The versions show up in rustdoc.
Diffstat (limited to 'src/libstd/net')
-rw-r--r--src/libstd/net/mod.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/net/mod.rs b/src/libstd/net/mod.rs
index 2b60fc38198..b0d2e3e4687 100644
--- a/src/libstd/net/mod.rs
+++ b/src/libstd/net/mod.rs
@@ -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 { .. }")