diff --git a/src/raw_device.rs b/src/raw_device.rs index aed9de2..fe80a6d 100644 --- a/src/raw_device.rs +++ b/src/raw_device.rs @@ -105,8 +105,7 @@ impl RawDevice { self.raw_socket .command(&mut self.bus, register::socketn::Command::Receive)?; - // If we couldn't read the whole check sequence or if we read less bytes than expected, - // drop the frame. + // If we couldn't read the whole frame, drop it instead. if received_frame_size < expected_frame_size { Ok(0) } else {