From d7c8bf3ff9ee7f0fe30e0a4796100e47be24a440 Mon Sep 17 00:00:00 2001
From: Alex Crichton <alex@alexcrichton.com>
Date: Thu, 11 Feb 2016 09:47:48 -0800
Subject: [PATCH] Remove an unused #![feature] in a doctest

---
 src/libstd/net/mod.rs | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/libstd/net/mod.rs b/src/libstd/net/mod.rs
index d263bf38495c1..aac2e05c37c40 100644
--- a/src/libstd/net/mod.rs
+++ b/src/libstd/net/mod.rs
@@ -139,7 +139,6 @@ pub fn lookup_host(host: &str) -> io::Result<LookupHost> {
 ///
 /// ```no_run
 /// #![feature(lookup_addr)]
-/// #![feature(ip_addr)]
 ///
 /// use std::net::{self, Ipv4Addr, IpAddr};
 ///