From d50652132fa84903be78e8d105ac1389a701e401 Mon Sep 17 00:00:00 2001 From: Mattt Thompson Date: Wed, 9 Nov 2011 12:05:53 -0600 Subject: [PATCH] Fixing documentation for appendPartWithFileURL:name:error: --- AFNetworking/AFHTTPClient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPClient.h b/AFNetworking/AFHTTPClient.h index 5b1b716..da2e086 100644 --- a/AFNetworking/AFHTTPClient.h +++ b/AFNetworking/AFHTTPClient.h @@ -407,7 +407,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete @param name The name to be associated with the specified data. This parameter must not be `nil`. @param error If an error occurs, upon return contains an `NSError` object that describes the problem. - @discussion The filename and MIME type for this data in the form will be automatically generated, using `NSURLResponse` `-MIMEType` and `-suggestedFilename`. + @discussion The filename and MIME type for this data in the form will be automatically generated, using `NSURLResponse` `-suggestedFilename` and `-MIMEType`, respectively. */ - (void)appendPartWithFileURL:(NSURL *)fileURL name:(NSString *)name error:(NSError **)error;