From e9fe92444f141337a04c412160661cd876371d4e Mon Sep 17 00:00:00 2001 From: Michael Schneider Date: Sat, 9 Apr 2016 10:55:04 -0700 Subject: [PATCH] Small comment fix --- AsyncDisplayKit/ASCollectionView.mm | 2 +- AsyncDisplayKit/ASTableView.mm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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]; });