Skip to content

Commit ad0053c

Browse files
committed
Fix typos in AFImageRequest header file
1 parent f695ced commit ad0053c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

AFNetworking/AFImageRequestOperation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#endif
3333

3434
/**
35-
`AFImageRequestOperation` is a subclass of `AFHTTPRequestOperation` for downloading an processing images.
35+
`AFImageRequestOperation` is a subclass of `AFHTTPRequestOperation` for downloading and processing images.
3636
3737
## Acceptable Content Types
3838
@@ -71,7 +71,7 @@
7171
Creates and returns an `AFImageRequestOperation` object and sets the specified success callback.
7272
7373
@param urlRequest The request object to be loaded asynchronously during execution of the operation.
74-
@param success A block object to be executed when the request finishes successfully. This block has no return value and takes a single arguments, the image created from the response data of the request.
74+
@param success A block object to be executed when the request finishes successfully. This block has no return value and takes a single argument, the image created from the response data of the request.
7575
7676
@return A new image request operation
7777
*/

AFNetworking/AFImageRequestOperation.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ - (void)setCompletionBlockWithSuccess:(void (^)(AFHTTPRequestOperation *operatio
230230
});
231231
}
232232
}
233-
});
233+
});
234234
};
235235
#pragma clang diagnostic pop
236236
}

0 commit comments

Comments
 (0)