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

Commit

Permalink
Merge pull request #2732 from Coeur/master
Browse files Browse the repository at this point in the history
spelling fix
  • Loading branch information
kcharwood committed May 18, 2015
2 parents f38608b + f870596 commit 4363479
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion AFNetworking/AFURLConnectionOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ - (void)cancelConnection {
[self.connection cancel];
[self performSelector:@selector(connection:didFailWithError:) withObject:self.connection withObject:error];
} else {
// Accomodate race condition where `self.connection` has not yet been set before cancellation
// Accommodate race condition where `self.connection` has not yet been set before cancellation
self.error = error;
[self finish];
}
Expand Down
4 changes: 2 additions & 2 deletions AFNetworking/AFURLRequestSerialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ forHTTPHeaderField:(NSString *)field;
@param method The HTTP method for the request, such as `GET`, `POST`, `PUT`, or `DELETE`. This parameter must not be `nil`.
@param URLString The URL string used to create the request URL.
@param parameters The parameters to be either set as a query string for `GET` requests, or the request HTTP body.
@param error The error that occured while constructing the request.
@param error The error that occurred while constructing the request.
@return An `NSMutableURLRequest` object.
*/
Expand All @@ -238,7 +238,7 @@ forHTTPHeaderField:(NSString *)field;
@param URLString The URL string used to create the request URL.
@param parameters The parameters to be encoded and set in the request HTTP body.
@param block A block that takes a single argument and appends data to the HTTP body. The block argument is an object adopting the `AFMultipartFormData` protocol.
@param error The error that occured while constructing the request.
@param error The error that occurred while constructing the request.
@return An `NSMutableURLRequest` object
*/
Expand Down
2 changes: 1 addition & 1 deletion UIKit+AFNetworking/UIButton+AFNetworking.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
///----------------------------

/**
The image cache used to improve image loadiing performance on scroll views. By default, `UIButton` will use the `sharedImageCache` of `UIImageView`.
The image cache used to improve image loading performance on scroll views. By default, `UIButton` will use the `sharedImageCache` of `UIImageView`.
*/
+ (id <AFImageCache>)sharedImageCache;

Expand Down

0 comments on commit 4363479

Please sign in to comment.