Skip to content

Commit ce04836

Browse files
committed
fmt
Signed-off-by: wcampbell <wcampbell1995@gmail.com>
1 parent 7da0e58 commit ce04836

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/src/net/ip.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ impl Ipv6Addr {
12591259
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
12601260
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
12611261
pub const fn is_unicast_link_local_strict(&self) -> bool {
1262-
matches!(self.segments(), [0xfe80, 0, 0, 0, ..])
1262+
matches!(self.segments(), [0xfe80, 0, 0, 0, ..])
12631263
}
12641264

12651265
/// Returns [`true`] if the address is a unicast link-local address (`fe80::/10`).

0 commit comments

Comments
 (0)