Skip to content

Commit 5f6287e

Browse files
committed
Merge pull request SDWebImage#1256 from esteluk/patch-1
Fix typo "timeElasped" -> "timeElapsed"
2 parents 0df58e4 + 6edface commit 5f6287e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SDWebImage/SDWebImagePrefetcher.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ - (void)startPrefetchingAtIndex:(NSUInteger)index {
101101

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

0 commit comments

Comments
 (0)