From f4cee8060d6a4149d76eb943997c56eb6cfd4484 Mon Sep 17 00:00:00 2001 From: Roshan Nindrai Date: Thu, 25 May 2017 07:53:28 -0700 Subject: [PATCH] Fixed typos around 'dequeing' Summary: This reverts commit cc039179502b8992da38bfdd984389ace5ebd294. Issue fixed: #772 - [x] All tests pass. Demo project builds and runs. - [x] I added tests, an experiment, or detailed why my change isn't tested. - [] I added an entry to the `CHANGELOG.md` for any breaking changes, enhancements, or bug fixes. - [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Closes https://github.com/Instagram/IGListKit/pull/788 Differential Revision: D5129335 Pulled By: rnystrom fbshipit-source-id: 87efbd13b4ba7132f50d6a4de0430190172fd30c --- Source/IGListCollectionContext.h | 2 +- Source/IGListSectionController.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/IGListCollectionContext.h b/Source/IGListCollectionContext.h index 2392ca8f..8e9eec76 100644 --- a/Source/IGListCollectionContext.h +++ b/Source/IGListCollectionContext.h @@ -19,7 +19,7 @@ NS_ASSUME_NONNULL_BEGIN /** The collection context provides limited access to the collection-related information that - section controllers need for operations like sizing, dequeing cells, insterting, deleting, reloading, etc. + section controllers need for operations like sizing, dequeuing cells, insterting, deleting, reloading, etc. */ NS_SWIFT_NAME(ListCollectionContext) @protocol IGListCollectionContext diff --git a/Source/IGListSectionController.h b/Source/IGListSectionController.h index 52d17f05..eba888df 100644 --- a/Source/IGListSectionController.h +++ b/Source/IGListSectionController.h @@ -94,7 +94,7 @@ NS_SWIFT_NAME(ListSectionController) /** A context object for interacting with the collection. - Use this property for accessing the collection size, dequeing cells, reloading, inserting, deleting, etc. + Use this property for accessing the collection size, dequeuing cells, reloading, inserting, deleting, etc. */ @property (nonatomic, weak, nullable, readonly) id collectionContext;