diff --git a/examples/src/streaming/server.rs b/examples/src/streaming/server.rs index a090557..9c07387 100644 --- a/examples/src/streaming/server.rs +++ b/examples/src/streaming/server.rs @@ -44,7 +44,7 @@ impl pb::echo_server::Echo for EchoServer { type Item = Result; fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll> { - // A stream that never resovlves to anything.... + // A stream that never resolves to anything.... Poll::Pending } }