Skip to content

Commit

Permalink
Tweak display impl for IpPair (#4454)
Browse files Browse the repository at this point in the history
  • Loading branch information
octol authored Mar 11, 2024
1 parent 0282251 commit 5bb9e36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/ip-packet-requests/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl IpPair {

impl Display for IpPair {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
writeln!(f, "IPv4: {}, IPV6: {}", self.ipv4, self.ipv6)
write!(f, "IPv4: {}, IPv6: {}", self.ipv4, self.ipv6)
}
}

Expand Down

0 comments on commit 5bb9e36

Please sign in to comment.