From 0b82f01260bd8619004739a1ed8934b442a40b5d Mon Sep 17 00:00:00 2001 From: Touko Vainio-Kaila Date: Wed, 6 Mar 2024 20:43:14 +0200 Subject: [PATCH] api: Fix a typo in ServerInterceptor JavaDoc (#10990) --- api/src/main/java/io/grpc/ServerInterceptor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/io/grpc/ServerInterceptor.java b/api/src/main/java/io/grpc/ServerInterceptor.java index 272b10636c..9b2e76ef60 100644 --- a/api/src/main/java/io/grpc/ServerInterceptor.java +++ b/api/src/main/java/io/grpc/ServerInterceptor.java @@ -19,7 +19,7 @@ package io.grpc; import javax.annotation.concurrent.ThreadSafe; /** - * Interface for intercepting incoming calls before that are dispatched by + * Interface for intercepting incoming calls before they are dispatched by * {@link ServerCallHandler}. * *

Implementers use this mechanism to add cross-cutting behavior to server-side calls. Common