From b78f1c1cbe94af747d26f71f4673bb1e06cf7c75 Mon Sep 17 00:00:00 2001 From: yfchen Date: Thu, 8 Mar 2018 12:01:31 -0500 Subject: [PATCH] fix wrong document @param in TBase.h --- lib/cocoa/src/protocol/TBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cocoa/src/protocol/TBase.h b/lib/cocoa/src/protocol/TBase.h index b31061ec0cd..9935d506842 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 )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 )outProtocol error:(NSError **)error;