Correct a few documentation comments for method parameters

This commit is contained in:
Eric Jensen
2016-03-07 16:52:34 -08:00
parent 5c28bb8e21
commit 86ccd33a84
12 changed files with 18 additions and 20 deletions

View File

@@ -18,8 +18,8 @@
/**
* Inform that the collectionView is editing the cells at a list of indexPaths
*
* @param indexPaths, an array of NSIndexPath objects of cells being/will be edited.
* @param isBatched, indicates whether the editing operation will be batched by the collectionView
* @param indexPaths an array of NSIndexPath objects of cells being/will be edited.
* @param isBatched indicates whether the editing operation will be batched by the collectionView
*
* NOTE: when isBatched, used in combination with -collectionViewWillPerformBatchUpdates
*/
@@ -28,10 +28,10 @@
/**
* Inform that the collectionView is editing the sections at a set of indexes
*
* @param indexes, an NSIndexSet of section indexes being/will be edited.
* @param isBatched, indicates whether the editing operation will be batched by the collectionView
* @param indexes an NSIndexSet of section indexes being/will be edited.
* @param batched indicates whether the editing operation will be batched by the collectionView
*
* NOTE: when isBatched, used in combination with -collectionViewWillPerformBatchUpdates
* NOTE: when batched, used in combination with -collectionViewWillPerformBatchUpdates
*/
- (void)collectionViewWillEditSectionsAtIndexSet:(NSIndexSet *)indexes batched:(BOOL)batched;