From d90d1c00a7937a145c113ced4dd8f5df5668aecc Mon Sep 17 00:00:00 2001 From: solanav <solanav@protonmail.com> Date: Thu, 24 Mar 2022 21:50:27 +0100 Subject: [PATCH] Fixed typo on arti-client README.md --- crates/arti-client/README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/arti-client/README.md b/crates/arti-client/README.md index 48160554d8..6583eeab1f 100644 --- a/crates/arti-client/README.md +++ b/crates/arti-client/README.md @@ -85,7 +85,6 @@ those traits if the `tokio` crate feature is enabled. ### Example: making connections over Tor ```rust -# // Initiate a connection over Tor to example.com, port 80. let mut stream = tor_client.connect(("example.com", 80)).await?; @@ -105,7 +104,6 @@ let mut buf = Vec::new(); stream.read_to_end(&mut buf).await?; println!("{}", String::from_utf8_lossy(&buf)); -# ``` ### More advanced usage -- GitLab