aboutsummaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorZHANG Dapeng <zdapeng@google.com>2017-08-11 16:53:53 -0700
committerGitHub <noreply@github.com>2017-08-11 16:53:53 -0700
commitc71e2919dedc590031bc69b5e62d19382e7a80c8 (patch)
tree6ff0e603e8caf70158bccbfcbdc88d6a49d88cb5 /auth
parent8e0cf2782284e221841d1cb3f25d7ece839f414d (diff)
downloadgrpc-grpc-java-c71e2919dedc590031bc69b5e62d19382e7a80c8.tar.gz
all: fix typo of overridden
s/overriden/overridden/g
Diffstat (limited to 'auth')
-rw-r--r--auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java b/auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java
index 9cb3ba846..7f3265d5a 100644
--- a/auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java
+++ b/auth/src/main/java/io/grpc/auth/GoogleAuthLibraryCallCredentials.java
@@ -178,7 +178,7 @@ final class GoogleAuthLibraryCallCredentials implements CallCredentials {
static JwtHelper createJwtHelperOrNull(ClassLoader loader) {
Class<?> rawServiceAccountClass;
try {
- // Specify loader so it can be overriden in tests
+ // Specify loader so it can be overridden in tests
rawServiceAccountClass
= Class.forName("com.google.auth.oauth2.ServiceAccountCredentials", false, loader);
} catch (ClassNotFoundException ex) {