Fixed @see method reference in AFHTTPClient documentation for get/post/put/delete methods

This commit is contained in:
Mattt Thompson 2011-11-10 10:26:58 -06:00
parent d50652132f
commit 7658058083

View file

@ -309,7 +309,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete
@param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request.
@param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred.
@see enqueueHTTPOperationWithRequest:success:failure
@see HTTPRequestOperationWithRequest:success:failure
*/
- (void)getPath:(NSString *)path
parameters:(NSDictionary *)parameters
@ -324,7 +324,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete
@param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request.
@param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred.
@see enqueueHTTPOperationWithRequest:success:failure
@see HTTPRequestOperationWithRequest:success:failure
*/
- (void)postPath:(NSString *)path
parameters:(NSDictionary *)parameters
@ -339,7 +339,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete
@param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request.
@param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred.
@see enqueueHTTPOperationWithRequest:success:failure
@see HTTPRequestOperationWithRequest:success:failure
*/
- (void)putPath:(NSString *)path
parameters:(NSDictionary *)parameters
@ -354,7 +354,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete
@param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request.
@param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred.
@see enqueueHTTPOperationWithRequest:success:failure
@see HTTPRequestOperationWithRequest:success:failure
*/
- (void)deletePath:(NSString *)path
parameters:(NSDictionary *)parameters