diff --git a/actix_ws/fn.handle.html b/actix_ws/fn.handle.html index eed952fa4..717c7cc81 100644 --- a/actix_ws/fn.handle.html +++ b/actix_ws/fn.handle.html @@ -6,7 +6,7 @@
use actix_web::{middleware::Logger, web, App, Error, HttpRequest, HttpResponse, HttpServer};
use actix_ws::Message;
-use futures::stream::StreamExt as _;
+use futures_util::StreamExt as _;
async fn ws(req: HttpRequest, body: web::Payload) -> Result<HttpResponse, Error> {
let (response, mut session, mut msg_stream) = actix_ws::handle(&req, body)?;
diff --git a/help.html b/help.html
index db7e56519..547fa2770 100644
--- a/help.html
+++ b/help.html
@@ -1,2 +1,2 @@
-Help
- Rustdoc help
Back
\ No newline at end of file
+Help
+ Rustdoc help
Back
\ No newline at end of file
diff --git a/settings.html b/settings.html
index 38b853e10..303ef4030 100644
--- a/settings.html
+++ b/settings.html
@@ -1,2 +1,2 @@
-Settings
- Rustdoc settings
Back
\ No newline at end of file
+Settings
+ Rustdoc settings
Back
\ No newline at end of file
diff --git a/src/actix_ws/lib.rs.html b/src/actix_ws/lib.rs.html
index 2663a46de..45fd91dc8 100644
--- a/src/actix_ws/lib.rs.html
+++ b/src/actix_ws/lib.rs.html
@@ -115,7 +115,7 @@
/// ```no_run
/// use actix_web::{middleware::Logger, web, App, Error, HttpRequest, HttpResponse, HttpServer};
/// use actix_ws::Message;
-/// use futures::stream::StreamExt as _;
+/// use futures_util::StreamExt as _;
///
/// async fn ws(req: HttpRequest, body: web::Payload) -> Result<HttpResponse, Error> {
/// let (response, mut session, mut msg_stream) = actix_ws::handle(&req, body)?;