Skip to content

Commit

Permalink
Merge pull request SDWebImage#1256 from esteluk/patch-1
Browse files Browse the repository at this point in the history
Fix typo "timeElasped" -> "timeElapsed"
  • Loading branch information
mythodeia committed Aug 16, 2015
2 parents 0df58e4 + 6edface commit 5f6287e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SDWebImage/SDWebImagePrefetcher.m
Expand Up @@ -101,7 +101,7 @@ - (void)startPrefetchingAtIndex:(NSUInteger)index {

- (void)reportStatus {
NSUInteger total = [self.prefetchURLs count];
NSLog(@"Finished prefetching (%@ successful, %@ skipped, timeElasped %.2f)", @(total - self.skippedCount), @(self.skippedCount), CFAbsoluteTimeGetCurrent() - self.startedTime);
NSLog(@"Finished prefetching (%@ successful, %@ skipped, timeElapsed %.2f)", @(total - self.skippedCount), @(self.skippedCount), CFAbsoluteTimeGetCurrent() - self.startedTime);
if ([self.delegate respondsToSelector:@selector(imagePrefetcher:didFinishWithTotalCount:skippedCount:)]) {
[self.delegate imagePrefetcher:self
didFinishWithTotalCount:(total - self.skippedCount)
Expand Down

0 comments on commit 5f6287e

Please sign in to comment.