From 16321c279f5675133b6e7a4d5954b520d14b4f9c Mon Sep 17 00:00:00 2001 From: Jimmy Date: Sat, 25 Dec 2021 00:03:20 +0100 Subject: [PATCH] docs: fix typo in the streaming example. (#871) --- examples/src/streaming/server.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }