Merge pull request #1256 from esteluk/patch-1
Fix typo "timeElasped" -> "timeElapsed"
This commit is contained in:
commit
5f6287e535
|
@ -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