From ec1a46cdcacda3d3eaec50a31e3ef2b7df1ee692 Mon Sep 17 00:00:00 2001 From: Jesse Squires Date: Thu, 8 Dec 2016 07:01:14 -0800 Subject: [PATCH] Fix docs error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: 😳 Closes https://github.com/Instagram/IGListKit/pull/301 Differential Revision: D4299155 Pulled By: rnystrom fbshipit-source-id: 2bac6824a4d76401cb9eb61a582a734464f9d694 --- Source/IGListCollectionContext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/IGListCollectionContext.h b/Source/IGListCollectionContext.h index bebb501b..3d8a277d 100644 --- a/Source/IGListCollectionContext.h +++ b/Source/IGListCollectionContext.h @@ -230,7 +230,7 @@ NS_ASSUME_NONNULL_BEGIN [self.collectionContext insertInSectionController:self atIndexes:inserts]; NSIndexSet *deletes = [NSIndexSet indexSetWithIndex:0]; - [self.collectionContext deleteInSectionController:self deletes]; + [self.collectionContext deleteInSectionController:self atIndexes:deletes]; } completion:nil]; ```