Skip to content

Commit

Permalink
Fix "byte" -> "bytes" for plural
Browse files Browse the repository at this point in the history
  • Loading branch information
faern committed Apr 2, 2024
1 parent ab05fcb commit 128a9c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/forward_traffic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ async fn forward_datagrams_in_buffer(udp_out: &UdpSocket, buffer: &[u8]) -> io::
datagram_data.len(),
"Did not send entire UDP datagram"
);
log::trace!("Forwarded {} byte TCP->UDP", datagram_data.len());
log::trace!("Forwarded {} bytes TCP->UDP", datagram_data.len());

unprocessed_buffer = tail;
}
Expand Down

0 comments on commit 128a9c9

Please sign in to comment.