From 80162306e71c8561873a9c9496d65f2c1387d119 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Thu, 21 Feb 2019 11:56:15 -0800 Subject: chore: apply rustfmt to all crates (#917) --- examples/udp-client.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples/udp-client.rs') diff --git a/examples/udp-client.rs b/examples/udp-client.rs index d2d4bc99..900d3616 100644 --- a/examples/udp-client.rs +++ b/examples/udp-client.rs @@ -51,7 +51,8 @@ fn main() -> Result<(), Box> { "0.0.0.0:0" } else { "[::]:0" - }.parse()?; + } + .parse()?; let socket = UdpSocket::bind(&local_addr)?; const MAX_DATAGRAM_SIZE: usize = 65_507; socket -- cgit v1.2.3