Skip to content

Commit 1f84381

Browse files
committed
Merge pull request #16 from dmitric/master
Change NSInvocation variable to be named invocation instead of invoction
2 parents a646caa + 08c1c09 commit 1f84381

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

EGOCache.m

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959

6060
@interface EGOCache ()
6161
- (void)removeItemFromCache:(NSString*)key;
62-
- (void)performDiskWriteOperation:(NSInvocation *)invoction;
62+
- (void)performDiskWriteOperation:(NSInvocation *)invocation;
6363
- (void)saveCacheDictionary;
6464
@end
6565

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

313-
- (void)performDiskWriteOperation:(NSInvocation *)invoction {
314-
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithInvocation:invoction];
313+
- (void)performDiskWriteOperation:(NSInvocation *)invocation {
314+
NSInvocationOperation *operation = [[NSInvocationOperation alloc] initWithInvocation:invocation];
315315
[diskOperationQueue addOperation:operation];
316316
#if EGO_NO_ARC
317317
[operation release];

0 commit comments

Comments
 (0)