Skip to content

Commit c71e291

Browse files
authored
all: fix typo of overridden
s/overriden/overridden/g
1 parent 8e0cf27 commit c71e291

8 files changed

Lines changed: 12 additions & 12 deletions

File tree

auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ private static Metadata toHeaders(@Nullable Map<String, List<String>> metadata)
178178
static JwtHelper createJwtHelperOrNull(ClassLoader loader) {
179179
Class<?> rawServiceAccountClass;
180180
try {
181-
// Specify loader so it can be overriden in tests
181+
// Specify loader so it can be overridden in tests
182182
rawServiceAccountClass
183183
= Class.forName("com.google.auth.oauth2.ServiceAccountCredentials", false, loader);
184184
} catch (ClassNotFoundException ex) {

core/src/main/java/io/grpc/internal/AbstractManagedChannelImplBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public abstract class AbstractManagedChannelImplBuilder
126126
* larger than this limit is received it will not be processed and the RPC will fail with
127127
* RESOURCE_EXHAUSTED.
128128
*/
129-
// Can be overriden by subclasses.
129+
// Can be overridden by subclasses.
130130
@Override
131131
public T maxInboundMessageSize(int max) {
132132
checkArgument(max >= 0, "negative max");

netty/src/main/java/io/grpc/netty/NettyClientStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ public Http2Stream http2Stream() {
237237
}
238238

239239
/**
240-
* Intended to be overriden by NettyClientTransport, which has more information about failures.
240+
* Intended to be overridden by NettyClientTransport, which has more information about failures.
241241
* May only be called from event loop.
242242
*/
243243
protected abstract Status statusFromFailedFuture(ChannelFuture f);

okhttp/src/main/java/io/grpc/okhttp/OkHttpClientTransport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -554,7 +554,7 @@ public LogId getLogId() {
554554
}
555555

556556
/**
557-
* Gets the overriden authority hostname. If the authority is overriden to be an invalid
557+
* Gets the overridden authority hostname. If the authority is overridden to be an invalid
558558
* authority, uri.getHost() will (rightly) return null, since the authority is no longer
559559
* an actual service. This method overrides the behavior for practical reasons. For example,
560560
* if an authority is in the form "invalid_authority" (note the "_"), rather than return null,

testing/src/main/java/io/grpc/internal/NoopClientCall.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
/**
2323
* {@link NoopClientCall} is a class that is designed for use in tests. It is designed to be used
2424
* in places where a scriptable call is necessary. By default, all methods are noops, and designed
25-
* to be overriden.
25+
* to be overridden.
2626
*/
2727
public class NoopClientCall<ReqT, RespT> extends ClientCall<ReqT, RespT> {
2828

2929
/**
3030
* {@link NoopClientCall.NoopClientCallListener} is a class that is designed for use in tests.
3131
* It is designed to be used in places where a scriptable call listener is necessary. By
32-
* default, all methods are noops, and designed to be overriden.
32+
* default, all methods are noops, and designed to be overridden.
3333
*/
3434
public static class NoopClientCallListener<T> extends ClientCall.Listener<T> {
3535
}

testing/src/main/java/io/grpc/internal/NoopServerCall.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@
2424
/**
2525
* {@link NoopServerCall} is a class that is designed for use in tests. It is designed to be used
2626
* in places where a scriptable call is necessary. By default, all methods are noops, and designed
27-
* to be overriden.
27+
* to be overridden.
2828
*/
2929
public class NoopServerCall<ReqT, RespT> extends ServerCall<ReqT, RespT> {
3030

3131
/**
3232
* {@link NoopServerCall.NoopServerCallListener} is a class that is designed for use in tests.
3333
* It is designed to be used in places where a scriptable call listener is necessary. By
34-
* default, all methods are noops, and designed to be overriden.
34+
* default, all methods are noops, and designed to be overridden.
3535
*/
3636
public static class NoopServerCallListener<T> extends ServerCall.Listener<T> {
3737
}

testing/src/main/java/io/grpc/testing/NoopClientCall.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/**
2424
* {@link NoopClientCall} is a class that is designed for use in tests. It is designed to be used
2525
* in places where a scriptable call is necessary. By default, all methods are noops, and designed
26-
* to be overriden.
26+
* to be overridden.
2727
*
2828
* @deprecated moved to {@link io.grpc.internal.NoopClientCall} and for internal use only. Please
2929
* use {@link GrpcServerRule} to test on InProcess channels instead
@@ -35,7 +35,7 @@ public class NoopClientCall<ReqT, RespT> extends ClientCall<ReqT, RespT> {
3535
/**
3636
* {@link NoopClientCall.NoopClientCallListener} is a class that is designed for use in tests.
3737
* It is designed to be used in places where a scriptable call listener is necessary. By
38-
* default, all methods are noops, and designed to be overriden.
38+
* default, all methods are noops, and designed to be overridden.
3939
*/
4040
@Deprecated
4141
public static class NoopClientCallListener<T> extends ClientCall.Listener<T> {

testing/src/main/java/io/grpc/testing/NoopServerCall.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
/**
2626
* {@link NoopServerCall} is a class that is designed for use in tests. It is designed to be used
2727
* in places where a scriptable call is necessary. By default, all methods are noops, and designed
28-
* to be overriden.
28+
* to be overridden.
2929
*
3030
* @deprecated moved to {@link io.grpc.internal.NoopServerCall} and for internal use only. Please
3131
* use {@link GrpcServerRule} to test on InProcess channels instead
@@ -37,7 +37,7 @@ public class NoopServerCall<ReqT, RespT> extends ServerCall<ReqT, RespT> {
3737
/**
3838
* {@link NoopServerCall.NoopServerCallListener} is a class that is designed for use in tests.
3939
* It is designed to be used in places where a scriptable call listener is necessary. By
40-
* default, all methods are noops, and designed to be overriden.
40+
* default, all methods are noops, and designed to be overridden.
4141
*/
4242
@Deprecated
4343
public static class NoopServerCallListener<T> extends ServerCall.Listener<T> {

0 commit comments

Comments
 (0)