From 93bc3a7dd0d8a0f12a913a52a3f2d6ec87858b8a Mon Sep 17 00:00:00 2001 From: Igor Aleksanov Date: Mon, 7 Sep 2020 13:14:42 +0300 Subject: [PATCH] Use ws instead of wss in the doc-test --- awc/src/ws.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awc/src/ws.rs b/awc/src/ws.rs index 42498cb63..1f53df63a 100644 --- a/awc/src/ws.rs +++ b/awc/src/ws.rs @@ -12,7 +12,7 @@ //! #[actix_rt::main] //! async fn main() { //! let (_resp, mut connection) = Client::new() -//! .ws("wss://echo.websocket.org") +//! .ws("ws://echo.websocket.org") //! .connect() //! .await //! .unwrap();