From 71baa4967ddd40e2b0a43aaa81f2c8fc3ac93063 Mon Sep 17 00:00:00 2001 From: Kartik Singhal Date: Wed, 9 Nov 2016 11:41:37 -0500 Subject: [PATCH] Correct client invocation example --- examples/echo-udp.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/echo-udp.rs b/examples/echo-udp.rs index f95fbd3e9..d8266ea95 100644 --- a/examples/echo-udp.rs +++ b/examples/echo-udp.rs @@ -9,7 +9,7 @@ //! and in another terminal you can run: //! //! ```sh -//! $ nc -u localhost 8080 +//! $ echo -n "hello" | nc -4u localhost 8080 //! ``` //! //! Each line you type in to the `nc` terminal should be echo'd back to you!