examples: improve echo example consistency (#7256)

This commit is contained in:
Nicholas Skinsacos
2025-04-18 18:02:25 +03:30
committed by GitHub
parent 159a3b2c85
commit 1434b32b5a
10 changed files with 184 additions and 165 deletions
+2 -2
View File
@@ -11,11 +11,11 @@
//!
//! This in another terminal
//!
//! cargo run --example echo
//! cargo run --example echo-tcp
//!
//! And finally this in another terminal
//!
//! cargo run --example connect 127.0.0.1:8081
//! cargo run --example connect-tcp 127.0.0.1:8081
//!
//! This final terminal will connect to our proxy, which will in turn connect to
//! the echo server, and you'll be able to see data flowing between them.