Fix sentences with a missing "be". (#8613)

This commit is contained in:
Benjamin Peterson 2021-10-20 15:14:10 -07:00 committed by GitHub
parent b86f4eba55
commit 1fe62dd417
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -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;

View File

@ -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 {

View File

@ -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

View File

@ -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;

View File

@ -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;