diff --git a/actix-web-actors/src/ws.rs b/actix-web-actors/src/ws.rs index e48d19959..16f475a7f 100644 --- a/actix-web-actors/src/ws.rs +++ b/actix-web-actors/src/ws.rs @@ -130,8 +130,8 @@ where A: Actor, { fn spawn(&mut self, fut: F) -> SpawnHandle - where - F: ActorFuture + 'static, + where + F: ActorFuture + 'static, { self.inner.spawn(fut) } @@ -292,8 +292,8 @@ where } struct WebsocketContextFut - where - A: Actor>, +where + A: Actor>, { fut: ContextFut>, encoder: Codec,