aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
diff options
context:
space:
mode:
authorGravatar Mehrdad Afshari <mehrdada@users.noreply.github.com>2018-02-22 07:19:47 -0800
committerGravatar Mehrdad Afshari <mehrdada@users.noreply.github.com>2018-02-22 07:19:47 -0800
commit074b802c9f3b1c22f57f5cea57e755487cc01832 (patch)
tree047b80dd60f708463664662eeb0bade45cc7d538 /src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
parent8f1eab1b290491c8db084938981eef124ccf0639 (diff)
Polish and address review comments
Diffstat (limited to 'src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs')
-rw-r--r--src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs b/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
index a095b05925..00b2fa8bec 100644
--- a/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
+++ b/src/csharp/Grpc.Core/Interceptors/ChannelExtensions.cs
@@ -76,9 +76,7 @@ namespace Grpc.Core.Interceptors
/// invocation metadata.
/// </param>
/// <remarks>
- /// Multiple interceptors can be added on top of each other by calling
- /// "channel.Intercept(a, b, c)". The order of invocation will be "a", "b", and then "c".
- /// Interceptors can be later added to an existing intercepted channel, effectively
+ /// Multiple interceptors can be added on top of each other by
/// building a chain like "channel.Intercept(c).Intercept(b).Intercept(a)". Note that
/// in this case, the last interceptor added will be the first to take control.
/// </remarks>