mirror of https://github.com/grpc/grpc-java.git
Fix sentences with a missing "be". (#8613)
This commit is contained in:
parent
b86f4eba55
commit
1fe62dd417
|
@ -217,7 +217,7 @@ public abstract class AbstractClientStream extends AbstractStream
|
|||
return transportTracer;
|
||||
}
|
||||
|
||||
/** This should only called from the transport thread. */
|
||||
/** This should only be called from the transport thread. */
|
||||
protected abstract static class TransportState extends AbstractStream.TransportState {
|
||||
/** Whether listener.closed() has been called. */
|
||||
private final StatsTraceContext statsTraceCtx;
|
||||
|
|
|
@ -171,7 +171,7 @@ public abstract class AbstractServerStream extends AbstractStream
|
|||
}
|
||||
|
||||
/**
|
||||
* This should only called from the transport thread (except for private interactions with
|
||||
* This should only be called from the transport thread (except for private interactions with
|
||||
* {@code AbstractServerStream}).
|
||||
*/
|
||||
protected abstract static class TransportState extends AbstractStream.TransportState {
|
||||
|
|
|
@ -105,7 +105,7 @@ public abstract class AbstractStream implements Stream {
|
|||
}
|
||||
|
||||
/**
|
||||
* Stream state as used by the transport. This should only called from the transport thread
|
||||
* Stream state as used by the transport. This should only be called from the transport thread
|
||||
* (except for private interactions with {@code AbstractStream}).
|
||||
*/
|
||||
public abstract static class TransportState
|
||||
|
|
|
@ -219,7 +219,7 @@ class NettyClientStream extends AbstractClientStream {
|
|||
}
|
||||
}
|
||||
|
||||
/** This should only called from the transport thread. */
|
||||
/** This should only be called from the transport thread. */
|
||||
public abstract static class TransportState extends Http2ClientStreamTransportState
|
||||
implements StreamIdHolder {
|
||||
private static final int NON_EXISTENT_ID = -1;
|
||||
|
|
|
@ -164,7 +164,7 @@ class NettyServerStream extends AbstractServerStream {
|
|||
}
|
||||
}
|
||||
|
||||
/** This should only called from the transport thread. */
|
||||
/** This should only be called from the transport thread. */
|
||||
public static class TransportState extends AbstractServerStream.TransportState
|
||||
implements StreamIdHolder {
|
||||
private final Http2Stream http2Stream;
|
||||
|
|
Loading…
Reference in New Issue