Fix typo "timeElasped" -> "timeElapsed"
This commit is contained in:
parent
0df58e4995
commit
6edface2c3
|
|
@ -101,7 +101,7 @@
|
|||
|
||||
- (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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue