From a0883ea81ae0586804eaec72b7bcd589744a0f5c Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Fri, 20 Nov 2020 13:24:45 -0800 Subject: [PATCH] Found another typo in the comment --- .../grpcio/grpc/_cython/_cygrpc/aio/callback_common.pyx.pxi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/grpcio/grpc/_cython/_cygrpc/aio/callback_common.pyx.pxi b/src/python/grpcio/grpc/_cython/_cygrpc/aio/callback_common.pyx.pxi index 41d2ea5012d..bc25c2e4bae 100644 --- a/src/python/grpcio/grpc/_cython/_cygrpc/aio/callback_common.pyx.pxi +++ b/src/python/grpcio/grpc/_cython/_cygrpc/aio/callback_common.pyx.pxi @@ -130,7 +130,7 @@ async def _receive_message(GrpcCallWrapper grpc_call_wrapper, # # Since they all indicates finish, they are better be merged. _LOGGER.debug('Failed to receive any message from Core') - # NOTE(lidiz) The returned message might be an empty bytess (aka. b''). + # NOTE(lidiz) The returned message might be an empty bytes (aka. b''). # Please explicitly check if it is None or falsey string object! return receive_op.message()