Browse Source

fix small typo

Victor Wei 1 year ago
parent
commit
77a49f6e42
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/wire/tcp.rs

+ 1 - 1
src/wire/tcp.rs

@@ -553,7 +553,7 @@ impl<T: AsRef<[u8]> + AsMut<[u8]>> Packet<T> {
         NetworkEndian::write_u16(&mut data[field::FLAGS], raw)
     }
 
-    /// Return the window size field.
+    /// Set the window size field.
     #[inline]
     pub fn set_window_len(&mut self, value: u16) {
         let data = self.buffer.as_mut();