From c6fa12175f1c5d2bd78977262c537847146b6dce Mon Sep 17 00:00:00 2001 From: Chongyang Shi <8771937+chongyangshi@users.noreply.github.com> Date: Wed, 4 Nov 2020 17:28:19 +0000 Subject: [PATCH] Fix a typo in interceptor example's README.md (#4014) --- examples/features/interceptor/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/features/interceptor/README.md b/examples/features/interceptor/README.md index 1e74b2881cc7..8498fbe11a1c 100644 --- a/examples/features/interceptor/README.md +++ b/examples/features/interceptor/README.md @@ -76,7 +76,7 @@ user to operate on. In the example, we define a new struct `wrappedStream`, which is embedded with a `ClientStream`. Then, we implement (overload) the `SendMsg` and `RecvMsg` -methods on `wrappedStream` to intercepts these two operations on the embedded +methods on `wrappedStream` to intercept these two operations on the embedded `ClientStream`. In the example, we log the message type info and time info for interception purpose.