Fix a typo in interceptor example's README.md (#4014)

This commit is contained in:
Chongyang Shi 2020-11-04 17:28:19 +00:00 committed by GitHub
parent ea89aca6c6
commit c6fa12175f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.