aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/examples
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2016-07-15 23:19:14 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2016-07-15 23:19:14 -0700
commitd7f0e877085ed96db10cba137bed2b4afae46f6a (patch)
tree13c2aded8739e7b3c2c925972a4c68e4b45ccced /src/objective-c/examples
parentac06cf09bec8a1e46214311924c5052c719682a1 (diff)
Sample app: ProtoMethod -> GRPCProtoMethod
Diffstat (limited to 'src/objective-c/examples')
-rw-r--r--src/objective-c/examples/Sample/Sample/ViewController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/objective-c/examples/Sample/Sample/ViewController.m b/src/objective-c/examples/Sample/Sample/ViewController.m
index 433a8a2ba3..70244ee62d 100644
--- a/src/objective-c/examples/Sample/Sample/ViewController.m
+++ b/src/objective-c/examples/Sample/Sample/ViewController.m
@@ -66,9 +66,9 @@
// Same example call using the generic gRPC client library:
- ProtoMethod *method = [[ProtoMethod alloc] initWithPackage:@"grpc.testing"
- service:@"TestService"
- method:@"UnaryCall"];
+ GRPCProtoMethod *method = [[GRPCProtoMethod alloc] initWithPackage:@"grpc.testing"
+ service:@"TestService"
+ method:@"UnaryCall"];
GRXWriter *requestsWriter = [GRXWriter writerWithValue:[request data]];