Skip to content

Commit dcce6cb

Browse files
committed
Remove links to rejected errata 4406 for RFC 4291
1 parent 2c28244 commit dcce6cb

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

library/std/src/net/ip.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1265,15 +1265,12 @@ impl Ipv6Addr {
12651265
/// # See also
12661266
///
12671267
/// - [IETF RFC 4291 section 2.5.6]
1268-
/// - [RFC 4291 errata 4406]
12691268
/// - [`is_unicast_link_local()`]
12701269
///
12711270
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
12721271
/// [IETF RFC 4291 section 2.5.6]: https://tools.ietf.org/html/rfc4291#section-2.5.6
12731272
/// [`true`]: ../../std/primitive.bool.html
1274-
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
12751273
/// [`is_unicast_link_local()`]: ../../std/net/struct.Ipv6Addr.html#method.is_unicast_link_local
1276-
///
12771274
pub fn is_unicast_link_local_strict(&self) -> bool {
12781275
(self.segments()[0] & 0xffff) == 0xfe80
12791276
&& (self.segments()[1] & 0xffff) == 0
@@ -1324,13 +1321,10 @@ impl Ipv6Addr {
13241321
/// # See also
13251322
///
13261323
/// - [IETF RFC 4291 section 2.4]
1327-
/// - [RFC 4291 errata 4406]
13281324
///
13291325
/// [IETF RFC 4291 section 2.4]: https://tools.ietf.org/html/rfc4291#section-2.4
13301326
/// [`true`]: ../../std/primitive.bool.html
1331-
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
13321327
/// [`is_unicast_link_local_strict()`]: ../../std/net/struct.Ipv6Addr.html#method.is_unicast_link_local_strict
1333-
///
13341328
pub fn is_unicast_link_local(&self) -> bool {
13351329
(self.segments()[0] & 0xffc0) == 0xfe80
13361330
}

0 commit comments

Comments
 (0)