Add a space between the ? and : in ternarys

This commit is contained in:
Eric Jensen
2016-03-17 10:38:51 -07:00
parent 14a389c5e0
commit 17aebcbaba
11 changed files with 17 additions and 17 deletions

View File

@@ -503,7 +503,7 @@ static NSString * const kCellReuseIdentifier = @"_ASTableViewCell";
CGFloat dir = (inserting) ? +1 : -1;
CGFloat adjustment = 0;
NSIndexPath *top = _contentOffsetAdjustmentTopVisibleRow ?: self.indexPathsForVisibleRows.firstObject;
NSIndexPath *top = _contentOffsetAdjustmentTopVisibleRow ? : self.indexPathsForVisibleRows.firstObject;
for (int index = 0; index < indexPaths.count; index++) {
NSIndexPath *indexPath = indexPaths[index];