Skip to content

Commit 51f41f0

Browse files
authored
chore: fix comment for examples/udp_server.rs (#1911)
Signed-off-by: spuradage <[email protected]>
1 parent 50ca128 commit 51f41f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/udp_server.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ fn main() -> io::Result<()> {
3434
println!("Anything you type will be echoed back to you.");
3535

3636
// Initialize a buffer for the UDP packet. We use the maximum size of a UDP
37-
// packet, which is the maximum value of 16 a bit integer.
37+
// packet, which is the maximum value of a 16-bit integer (65536).
3838
let mut buf = [0; 1 << 16];
3939

4040
// Our event loop.

0 commit comments

Comments
 (0)