about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2024-01-27 10:48:47 +0100
committerGitHub <noreply@github.com>2024-01-27 10:48:47 +0100
commitb35a3f89bd4cb5e9e7cc5b62de0e1334f04a6c5b (patch)
treefa6bada2590fdd8aeb59ac08999040189efbcf86
parent9a4417659e60a677f3dc0204c28cedfc6a6e4d91 (diff)
parent853504df238835208d8a565cbb532918d84492c6 (diff)
downloadrust-b35a3f89bd4cb5e9e7cc5b62de0e1334f04a6c5b.tar.gz
rust-b35a3f89bd4cb5e9e7cc5b62de0e1334f04a6c5b.zip
Rollup merge of #119641 - eopb:std-unused-ip-feature, r=ChrisDenton
Remove feature not required by `Ipv6Addr::to_cononical` doctest

The feature does not seem to be required by this doctest.
-rw-r--r--library/core/src/net/ip_addr.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/core/src/net/ip_addr.rs b/library/core/src/net/ip_addr.rs
index 408002d18ca..959c3289aff 100644
--- a/library/core/src/net/ip_addr.rs
+++ b/library/core/src/net/ip_addr.rs
@@ -1893,7 +1893,6 @@ impl Ipv6Addr {
     /// # Examples
     ///
     /// ```
-    /// #![feature(ip)]
     /// use std::net::Ipv6Addr;
     ///
     /// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x7f00, 0x1).is_loopback(), false);