From 15e96079f6382e6569a49981fa3b9e8ed7bb843b Mon Sep 17 00:00:00 2001 From: Brett Samblanet Date: Thu, 21 Dec 2023 12:40:39 -0800 Subject: [PATCH] fixing message --- .../Channel/IInvocationMessageDispatcher.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/WebJobs.Script.Grpc/Channel/IInvocationMessageDispatcher.cs b/src/WebJobs.Script.Grpc/Channel/IInvocationMessageDispatcher.cs index 6279c7bb56..14b01fca3c 100644 --- a/src/WebJobs.Script.Grpc/Channel/IInvocationMessageDispatcher.cs +++ b/src/WebJobs.Script.Grpc/Channel/IInvocationMessageDispatcher.cs @@ -26,7 +26,7 @@ internal interface IInvocationMessageDispatcher /// /// Inspects the incoming RpcLog and dispatches to a Thread or background Task as quickly as possible. This method is /// called from a loop processing incoming grpc messages and any thread blocking will delay the processing of that loop. - /// It can be assumed that this thread will never be called from multiple threads simultaneously and thus does not need + /// It can be assumed that this method will never be called from multiple threads simultaneously and thus does not need /// to be thread-safe. /// /// The RpcLog message. Implementors can assume that this message is an RpcLog. @@ -35,7 +35,7 @@ internal interface IInvocationMessageDispatcher /// /// Inspects an incoming InvocationResponse message and dispatches to a Thread or background Task as quickly as possible. /// This method is called from a loop processing incoming grpc messages and any thread blocking will delay the processing - /// of that loop. It can be assumed that this thread will never be called from multiple threads simultaneously and thus + /// of that loop. It can be assumed that this method will never be called from multiple threads simultaneously and thus /// does not need to be thread-safe. /// /// The InvocationResponse message. Implementors can assume that this message is an InvocationResponse.