aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Examples.MathClient/MathClient.cs
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-08 13:05:51 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-08 13:05:51 -0700
commit5f871ac2259a8ec022c1edb19e01990982fad672 (patch)
tree3cf185e0f54f1f3e13b4edb6dfc751946d21b57f /src/csharp/Grpc.Examples.MathClient/MathClient.cs
parent1562f5cfd9bc0baf33bef33dee550d7f09d69d1a (diff)
parentfe117723d0599ff990fb154acbc7856083d94c9e (diff)
Merge github.com:grpc/grpc into the-churnening
Diffstat (limited to 'src/csharp/Grpc.Examples.MathClient/MathClient.cs')
-rw-r--r--src/csharp/Grpc.Examples.MathClient/MathClient.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Examples.MathClient/MathClient.cs b/src/csharp/Grpc.Examples.MathClient/MathClient.cs
index ca7683d399..85d9cdc7a6 100644
--- a/src/csharp/Grpc.Examples.MathClient/MathClient.cs
+++ b/src/csharp/Grpc.Examples.MathClient/MathClient.cs
@@ -43,7 +43,7 @@ namespace math
using (Channel channel = new Channel("127.0.0.1:23456"))
{
- MathGrpc.IMathServiceClient stub = new MathGrpc.MathServiceClientStub(channel);
+ Math.IMathClient stub = new Math.MathClient(channel);
MathExamples.DivExample(stub);
MathExamples.DivAsyncExample(stub).Wait();