stub: fix misspelled javadocs

This commit is contained in:
Adil Ansari 2022-06-26 20:53:06 -07:00 committed by Eric Anderson
parent dc8954d442
commit a07304471b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ package io.grpc.stub;
*/
public interface ClientResponseObserver<ReqT, RespT> extends StreamObserver<RespT> {
/**
* Called by the runtime priot to the start of a call to provide a reference to the
* Called by the runtime prior to the start of a call to provide a reference to the
* {@link ClientCallStreamObserver} for the outbound stream. This can be used to listen to
* onReady events, disable auto inbound flow and perform other advanced functions.
*