mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 01:08:27 +00:00
Fixed typos around 'dequeing'
Summary:
This reverts commit cc03917950.
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
This commit is contained in:
parent
a8e4f3089c
commit
f4cee8060d
2 changed files with 2 additions and 2 deletions
|
|
@ -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 <NSObject>
|
||||
|
|
|
|||
|
|
@ -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 <IGListCollectionContext> collectionContext;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue