@@ -512,7 +512,7 @@ impl Ipv4Addr {
512
512
/// - addresses reserved for future protocols (see
513
513
/// [`is_ietf_protocol_assignment()`](#method.is_ietf_protocol_assignment), except
514
514
/// `192.0.0.9/32` and `192.0.0.10/32` which are globally routable
515
- /// - addresses reserved for future use (see [`is_reserved()`](#method.is_reserved() )
515
+ /// - addresses reserved for future use (see [`is_reserved()`](#method.is_reserved)
516
516
/// - addresses reserved for networking devices benchmarking (see
517
517
/// [`is_benchmarking`](#method.is_benchmarking))
518
518
///
@@ -1237,11 +1237,13 @@ impl Ipv6Addr {
1237
1237
///
1238
1238
/// - [IETF RFC 4291 section 2.5.6]
1239
1239
/// - [RFC 4291 errata 4406]
1240
+ /// - [`is_unicast_link_local()`]
1240
1241
///
1242
+ /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
1241
1243
/// [IETF RFC 4291 section 2.5.6]: https://tools.ietf.org/html/rfc4291#section-2.5.6
1242
1244
/// [`true`]: ../../std/primitive.bool.html
1243
1245
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
1244
- /// [`is_unicast_link_local()`]( #method.is_unicast_link_local)
1246
+ /// [`is_unicast_link_local()`]: ../../std/net/struct.Ipv6Addr.html #method.is_unicast_link_local
1245
1247
///
1246
1248
pub fn is_unicast_link_local_strict ( & self ) -> bool {
1247
1249
( self . segments ( ) [ 0 ] & 0xffff ) == 0xfe80
@@ -1300,7 +1302,7 @@ impl Ipv6Addr {
1300
1302
/// [IETF RFC 4291 section 2.4]: https://tools.ietf.org/html/rfc4291#section-2.4
1301
1303
/// [`true`]: ../../std/primitive.bool.html
1302
1304
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
1303
- /// [`is_unicast_link_local_strict()`]( #method.is_unicast_link_local_strict)
1305
+ /// [`is_unicast_link_local_strict()`]: ../../std/net/struct.Ipv6Addr.html #method.is_unicast_link_local_strict
1304
1306
///
1305
1307
pub fn is_unicast_link_local ( & self ) -> bool {
1306
1308
( self . segments ( ) [ 0 ] & 0xffc0 ) == 0xfe80
0 commit comments