浏览代码

Fix rustfmt - will squash.

Bryan Benson 3 年之前
父节点
当前提交
8f5e400a86
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/socket/udp.rs

+ 2 - 1
src/socket/udp.rs

@@ -230,7 +230,8 @@ impl<'a> UdpSocket<'a> {
     ///
     /// See also [send](#method.send).
     pub fn send_slice(&mut self, data: &[u8], remote_endpoint: IpEndpoint) -> Result<()> {
-        self.send(data.len(), remote_endpoint)?.copy_from_slice(data);
+        self.send(data.len(), remote_endpoint)?
+            .copy_from_slice(data);
         Ok(())
     }