From b0159102b52fd4b778a9bde15b1acd2e9fa6958e Mon Sep 17 00:00:00 2001 From: arithmetic1728 <58957152+arithmetic1728@users.noreply.github.com> Date: Tue, 8 Jun 2021 10:58:14 -0700 Subject: [PATCH] fix: fix grammar in StubSetting comment (#1397) --- gax/src/main/java/com/google/api/gax/rpc/StubSettings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gax/src/main/java/com/google/api/gax/rpc/StubSettings.java b/gax/src/main/java/com/google/api/gax/rpc/StubSettings.java index 25fc85512..ebb63f916 100644 --- a/gax/src/main/java/com/google/api/gax/rpc/StubSettings.java +++ b/gax/src/main/java/com/google/api/gax/rpc/StubSettings.java @@ -79,7 +79,7 @@ public abstract class StubSettings> { /** * Indicate when creating transport whether it is allowed to use mTLS endpoint instead of the * default endpoint. Only the endpoint set by client libraries is allowed. User provided endpoint - * should always be used as it is. Client libraries can set it via {@link + * should always be used as it is. Client libraries can set it via the {@link * Builder#setSwitchToMtlsEndpointAllowed} method. */ private final boolean switchToMtlsEndpointAllowed; @@ -205,7 +205,7 @@ public abstract static class Builder< /** * Indicate when creating transport whether it is allowed to use mTLS endpoint instead of the * default endpoint. Only the endpoint set by client libraries is allowed. User provided - * endpoint should always be used as it is. Client libraries can set it via {@link + * endpoint should always be used as it is. Client libraries can set it via the {@link * Builder#setSwitchToMtlsEndpointAllowed} method. */ private boolean switchToMtlsEndpointAllowed = false;