From 9a3ddd8d76170ed9a0c040e3b0d343cd2e698a40 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Fri, 3 Jan 2020 10:28:40 -0800 Subject: [PATCH] Correct comment wording --- src/python/grpcio/grpc/experimental/aio/_call.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/grpcio/grpc/experimental/aio/_call.py b/src/python/grpcio/grpc/experimental/aio/_call.py index 1557b678d66..36f07ce4d92 100644 --- a/src/python/grpcio/grpc/experimental/aio/_call.py +++ b/src/python/grpcio/grpc/experimental/aio/_call.py @@ -321,7 +321,7 @@ class UnaryUnaryCall(Call, _base_call.UnaryUnaryCall): try: response = yield from self._call except asyncio.CancelledError: - # Even if we converted all other CancelledError, there is still + # Even if we caught all other CancelledError, there is still # this corner case. If the application cancels immediately after # the Call object is created, we will observe this # `CancelledError`.