@@ -1217,8 +1217,8 @@ impl Ipv6Addr {
1217
1217
1218
1218
/// Returns [`true`] if the address is a unicast link-local address (`fe80::/64`).
1219
1219
///
1220
- /// A common mis-conception is to think that "unicast link-local addresses start with
1221
- /// `fe80::`", but the [IETF RFC 4291] actually defines a stricter format for these addresses:
1220
+ /// A common misconception is to think that "unicast link-local addresses start with
1221
+ /// `fe80::`", but [IETF RFC 4291] actually defines a stricter format for these addresses:
1222
1222
///
1223
1223
/// ```no_rust
1224
1224
/// | 10 |
@@ -1228,9 +1228,9 @@ impl Ipv6Addr {
1228
1228
/// +----------+-------------------------+----------------------------+
1229
1229
/// ```
1230
1230
///
1231
- /// This method validates the format defined in the RFC and won't recognize the following
1232
- /// addresses such as `fe80:0:0:1::` or `fe81::` as unicast link-local addresses for example .
1233
- /// If you need a less strict validation use [`Ipv6Addr::is_unicast_link_local()`] instead.
1231
+ /// This method validates the format defined in the RFC and won't recognize addresses
1232
+ /// like `fe80:0:0:1::` or `fe81::` as unicast link-local addresses.
1233
+ /// If you need a less strict validation, use [`Ipv6Addr::is_unicast_link_local()`] instead.
1234
1234
///
1235
1235
/// # Examples
1236
1236
///
@@ -1282,7 +1282,7 @@ impl Ipv6Addr {
1282
1282
/// +----------+-------------------------+----------------------------+
1283
1283
/// ```
1284
1284
///
1285
- /// As a result, this method consider addresses such as `fe80:0:0:1::` or `fe81::` to be
1285
+ /// As a result, this method considers addresses such as `fe80:0:0:1::` or `fe81::` to be
1286
1286
/// unicast link-local addresses, whereas [`Ipv6Addr::is_unicast_link_local_strict()`] does not.
1287
1287
/// If you need a strict validation fully compliant with the RFC, use
1288
1288
/// [`Ipv6Addr::is_unicast_link_local_strict()`] instead.
@@ -1362,7 +1362,7 @@ impl Ipv6Addr {
1362
1362
}
1363
1363
1364
1364
/// Returns [`true`] if this is an address reserved for documentation
1365
- /// (2001:db8::/32).
1365
+ /// (` 2001:db8::/32` ).
1366
1366
///
1367
1367
/// This property is defined in [IETF RFC 3849].
1368
1368
///
0 commit comments