diff --git a/AsyncDisplayKit/ASCollectionView.mm b/AsyncDisplayKit/ASCollectionView.mm index 13e7c74362..26dfc15c63 100644 --- a/AsyncDisplayKit/ASCollectionView.mm +++ b/AsyncDisplayKit/ASCollectionView.mm @@ -757,7 +757,7 @@ static NSString * const kCellReuseIdentifier = @"_ASCollectionViewCell"; - (void)_scheduleCheckForBatchFetching { - // Push this to the next runloop to be sure the UITableView has the right content size + // Push this to the next runloop to be sure the scroll view has the right content size dispatch_async(dispatch_get_main_queue(), ^{ [self _checkForBatchFetching]; }); diff --git a/AsyncDisplayKit/ASTableView.mm b/AsyncDisplayKit/ASTableView.mm index ac079a1fa8..1a37208416 100644 --- a/AsyncDisplayKit/ASTableView.mm +++ b/AsyncDisplayKit/ASTableView.mm @@ -732,7 +732,7 @@ static NSString * const kCellReuseIdentifier = @"_ASTableViewCell"; - (void)_scheduleCheckForBatchFetching { - // Push this to the next runloop to be sure the UITableView has the right content size + // Push this to the next runloop to be sure the scroll view has the right content size dispatch_async(dispatch_get_main_queue(), ^{ [self _checkForBatchFetching]; });