diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-07-03 12:05:04 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-07-04 15:00:32 -0700 |
commit | 1ac8f9a26aab6fc6cfff967073e81ec3c84a07c2 (patch) | |
tree | 8fd5f336c9beb6be518669c7b871903b2036cd3e /src/objective-c/GRPCClient/ProtoMethod.m | |
parent | 469d4b6fde8084232cafa3972691d20b6cb359c7 (diff) |
Rename interface->service
Diffstat (limited to 'src/objective-c/GRPCClient/ProtoMethod.m')
-rw-r--r-- | src/objective-c/GRPCClient/ProtoMethod.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/objective-c/GRPCClient/ProtoMethod.m b/src/objective-c/GRPCClient/ProtoMethod.m index 1f5f836b7d..4c78b4f61c 100644 --- a/src/objective-c/GRPCClient/ProtoMethod.m +++ b/src/objective-c/GRPCClient/ProtoMethod.m @@ -39,7 +39,7 @@ method:(NSString *)method { if ((self = [super init])) { _package = [package copy]; - _interface = [interface copy]; + _service = [interface copy]; _method = [method copy]; } return self; |