From abc04440f7133c997f0a47e6f8b65319c6a6988e Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Wed, 21 Sep 2011 15:55:21 -0500 Subject: [PATCH] Adding documentation to constants in AFHTTPRequestOperation --- AFNetworking/AFHTTPRequestOperation.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPRequestOperation.h b/AFNetworking/AFHTTPRequestOperation.h index 12d0260..5125b18 100644 --- a/AFNetworking/AFHTTPRequestOperation.h +++ b/AFNetworking/AFHTTPRequestOperation.h @@ -22,10 +22,21 @@ #import -// Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain +/** + Indicates an error occured in AFNetworking. + + @discussion Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain. + */ extern NSString * const AFNetworkingErrorDomain; +/** + Posted when an operation begins executing. + */ extern NSString * const AFHTTPOperationDidStartNotification; + +/** + Posted when an operation finishes. + */ extern NSString * const AFHTTPOperationDidFinishNotification; /**