From 0e0e65f864a4c14c0336613a00f61704dcebc168 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Sat, 14 Jul 2012 12:04:41 +0000 Subject: Comments. --- Frameworks/QueryKit/Source/QKQuery.m | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Frameworks') diff --git a/Frameworks/QueryKit/Source/QKQuery.m b/Frameworks/QueryKit/Source/QKQuery.m index 08499b8d..35d53102 100644 --- a/Frameworks/QueryKit/Source/QKQuery.m +++ b/Frameworks/QueryKit/Source/QKQuery.m @@ -231,8 +231,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; /** * Convenience method for adding a new parameter. * - * @param field - * @param value + * @param field The field name of the parameter. + * @param value The field value of the parameter. */ - (void)addParameter:(NSString *)field operator:(QKQueryOperator)operator value:(id)value { @@ -257,8 +257,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; /** * Convenience method for adding a new update parameter. * - * @param field - * @param value + * @param field The field name of the update parameter. + * @param value The field value of the update parameter. */ - (void)addFieldToUpdate:(NSString *)field toValue:(id)value { @@ -271,7 +271,7 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; /** * Adds the supplied field to the query's GROUP BY clause. * - * @param field + * @param field The field to GROUP BY. */ - (void)groupByField:(NSString *)field { @@ -281,7 +281,7 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; /** * Convenience method for adding more than one field to the query's GROUP BY clause. * - * @param fields + * @param fields An array of fields to GROUP BY. */ - (void)groupByFields:(NSArray *)fields { @@ -297,8 +297,8 @@ static NSString *QKNoQueryTableException = @"QKNoQueryTable"; /** * Adds the supplied field to the query's ORDER BY clause. * - * @param field - * @param descending + * @param field The field to ORDER BY. + * @param descending Indicates whether the ORDER BY should be descending. */ - (void)orderByField:(NSString *)field descending:(BOOL)descending { -- cgit v1.2.3