Skip to content

Commit

Permalink
Merge pull request #16 from dmitric/master
Browse files Browse the repository at this point in the history
Change NSInvocation variable to be named invocation instead of invoction
  • Loading branch information
shnhrrsn committed Jun 25, 2012
2 parents a646caa + 08c1c09 commit 1f84381
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions EGOCache.m
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@

@interface EGOCache ()
- (void)removeItemFromCache:(NSString*)key;
- (void)performDiskWriteOperation:(NSInvocation *)invoction;
- (void)performDiskWriteOperation:(NSInvocation *)invocation;
- (void)saveCacheDictionary;
@end

Expand Down Expand Up @@ -310,8 +310,8 @@ - (void)setObject:(id<NSCoding>)anObject forKey:(NSString*)key withTimeoutInterv
#pragma mark -
#pragma mark Disk writing operations

- (void)performDiskWriteOperation:(NSInvocation *)invoction {
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithInvocation:invoction];
- (void)performDiskWriteOperation:(NSInvocation *)invocation {
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithInvocation:invocation];
[diskOperationQueue addOperation:operation];
#if EGO_NO_ARC
[operation release];
Expand Down

0 comments on commit 1f84381

Please sign in to comment.