We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50ca128 commit 51f41f0Copy full SHA for 51f41f0
examples/udp_server.rs
@@ -34,7 +34,7 @@ fn main() -> io::Result<()> {
34
println!("Anything you type will be echoed back to you.");
35
36
// 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.
+ // packet, which is the maximum value of a 16-bit integer (65536).
38
let mut buf = [0; 1 << 16];
39
40
// Our event loop.
0 commit comments