From 416dd1413f6635add50716f690924df7fa0c6137 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Cramfox=E2=80=9D?= <“kasey@n0.computer”> Date: Fri, 31 Jan 2025 16:11:58 -0500 Subject: [PATCH] docs fix --- iroh-net-report/src/ip_mapped_addrs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iroh-net-report/src/ip_mapped_addrs.rs b/iroh-net-report/src/ip_mapped_addrs.rs index c2266397b0..a3f10dfcaa 100644 --- a/iroh-net-report/src/ip_mapped_addrs.rs +++ b/iroh-net-report/src/ip_mapped_addrs.rs @@ -85,7 +85,7 @@ pub struct IpMappedAddresses(Arc>); #[derive(Debug, Default)] pub struct Inner { by_mapped_addr: BTreeMap, - /// Because [`SocketAddrV6`] contains extra fields besides the IP + /// Because [`std::net::SocketAddrV6`] contains extra fields besides the IP /// address and port (ie, flow_info and scope_id), the a [`SocketAddrV6`] /// with the same IP addr and port might Hash to something different. /// So to get a hashable key for the map, we are using `(IpAddr, u6)`.