docs: fix typo in the streaming example. (#871)

This commit is contained in:
Jimmy
2021-12-25 00:03:20 +01:00
committed by GitHub
parent e78a2d832f
commit 16321c279f
+1 -1
View File
@@ -44,7 +44,7 @@ impl pb::echo_server::Echo for EchoServer {
type Item = Result<EchoResponse, Status>;
fn poll_next(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Self::Item>> {
// A stream that never resovlves to anything....
// A stream that never resolves to anything....
Poll::Pending
}
}