Skip to content

Commit

Permalink
fixed typ in method description
Browse files Browse the repository at this point in the history
should say asynchronously in methods ```removeImageForKey...```
  • Loading branch information
mythodeia committed Jun 8, 2015
1 parent 91b4251 commit 8f3b5e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SDWebImage/SDImageCache.h
Original file line number Diff line number Diff line change
Expand Up @@ -146,23 +146,23 @@ typedef void(^SDWebImageCalculateSizeBlock)(NSUInteger fileCount, NSUInteger tot


/**
* Remove the image from memory and disk cache synchronously
* Remove the image from memory and disk cache asynchronously
*
* @param key The unique image cache key
* @param completion An block that should be executed after the image has been removed (optional)
*/
- (void)removeImageForKey:(NSString *)key withCompletion:(SDWebImageNoParamsBlock)completion;

/**
* Remove the image from memory and optionally disk cache synchronously
* Remove the image from memory and optionally disk cache asynchronously
*
* @param key The unique image cache key
* @param fromDisk Also remove cache entry from disk if YES
*/
- (void)removeImageForKey:(NSString *)key fromDisk:(BOOL)fromDisk;

/**
* Remove the image from memory and optionally disk cache synchronously
* Remove the image from memory and optionally disk cache asynchronously
*
* @param key The unique image cache key
* @param fromDisk Also remove cache entry from disk if YES
Expand Down

0 comments on commit 8f3b5e9

Please sign in to comment.