You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by jk...@apache.org on 2018/03/08 22:15:02 UTC

thrift git commit: fix wrong document @param in TBase.h Client: cocoa

Repository: thrift
Updated Branches:
  refs/heads/master b963e286b -> 138da2049


fix wrong document @param in TBase.h
Client: cocoa

This closes #1504


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/138da204
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/138da204
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/138da204

Branch: refs/heads/master
Commit: 138da2049020fe66e51f8adb456cdd2bd8d5e502
Parents: b963e28
Author: yfchen <yf...@xiangx.net>
Authored: Thu Mar 8 12:01:31 2018 -0500
Committer: James E. King III <jk...@apache.org>
Committed: Thu Mar 8 17:14:24 2018 -0500

----------------------------------------------------------------------
 lib/cocoa/src/protocol/TBase.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/138da204/lib/cocoa/src/protocol/TBase.h
----------------------------------------------------------------------
diff --git a/lib/cocoa/src/protocol/TBase.h b/lib/cocoa/src/protocol/TBase.h
index b31061e..9935d50 100644
--- a/lib/cocoa/src/protocol/TBase.h
+++ b/lib/cocoa/src/protocol/TBase.h
@@ -26,14 +26,14 @@
 /**
  * De-serialize object from the given input protocol
  *
- * @param input protocol used for reading
+ * @param inProtocol protocol used for reading
  */
 -(BOOL) read:(id <TProtocol>)inProtocol error:(NSError **)error;
 
 /**
  * Serialize object to the given protocol
  *
- * @param buf output protocol used for writing
+ * @param outProtocol output protocol used for writing
  */
 -(BOOL) write:(id <TProtocol>)outProtocol error:(NSError **)error;