Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
[Issue #75][Issue #73] Fixing return type for headObjectWithPath:succ…
Browse files Browse the repository at this point in the history
…ess:failure:
  • Loading branch information
mattt committed Feb 14, 2015
1 parent 6c9acf1 commit 051d1ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions AFAmazonS3Manager/AFAmazonS3Manager.h
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@
@param success A block object to be executed when the request operation finishes successfully. This block has no return value and takes a single argument: the response object from the server.
@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 response data. This block has no return value and takes a single argument: the `NSError` object describing error that occurred.
*/
- (void)headObjectWithPath:(NSString *)path
success:(void (^)(NSHTTPURLResponse *response))success
failure:(void (^)(NSError *error))failure;
- (AFHTTPRequestOperation *)headObjectWithPath:(NSString *)path
success:(void (^)(NSHTTPURLResponse *response))success
failure:(void (^)(NSError *error))failure;

/**
Gets an object for a user that has read access to the object.
Expand Down

0 comments on commit 051d1ae

Please sign in to comment.