Browse Source

Merge pull request #431 from dnadlinger/patch-2

socket/tcp: Fix missing ` in doc comment
Dario Nieuwenhuis 4 năm trước cách đây
mục cha
commit
8347da7d59
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/socket/tcp.rs

+ 1 - 1
src/socket/tcp.rs

@@ -858,7 +858,7 @@ impl<'a> TcpSocket<'a> {
     /// Call `f` with the largest contiguous slice of octets in the transmit buffer,
     /// and enqueue the amount of elements returned by `f`.
     ///
-    /// This function returns `Err(Error::Illegal) if the transmit half of
+    /// This function returns `Err(Error::Illegal)` if the transmit half of
     /// the connection is not open; see [may_send](#method.may_send).
     pub fn send<'b, F, R>(&'b mut self, f: F) -> Result<R>
             where F: FnOnce(&'b mut [u8]) -> (usize, R) {