Skip to content

Commit

Permalink
Fix some typos/misses (fix #119)
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier Poitrey committed May 14, 2012
1 parent 5aa5b46 commit b6e0630
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion SDWebImage/SDWebImageCompat.h
Expand Up @@ -61,7 +61,7 @@ NS_INLINE UIImage *SDScaledImageForPath(NSString *path, NSObject *imageOrData)
{
image = [[UIImage alloc] initWithData:(NSData *)imageOrData];
}
else if ([imageOrData isKindOfClass:[NSData class]])
else if ([imageOrData isKindOfClass:[UIImage class]])
{
image = SDWIReturnRetained((UIImage *)imageOrData);
}
Expand Down
1 change: 1 addition & 0 deletions SDWebImage/SDWebImagePrefetcher.h
Expand Up @@ -8,6 +8,7 @@

#import <Foundation/Foundation.h>
#import "SDWebImageManagerDelegate.h"
#import "SDWebImageManager.h"

/**
* Prefetch some URLs in the cache for future use. Images are downloaded in low priority.
Expand Down
1 change: 1 addition & 0 deletions SDWebImage/SDWebImagePrefetcher.m
Expand Up @@ -19,6 +19,7 @@ @implementation SDWebImagePrefetcher

@synthesize prefetchURLs;
@synthesize maxConcurrentDownloads;
@synthesize options;

+ (SDWebImagePrefetcher *)sharedImagePrefetcher
{
Expand Down

0 comments on commit b6e0630

Please sign in to comment.