IGListKit/Guides
Jian Chen c7c8f38638 Add <IGListDiffable> to isEqualToDiffableObject method argument type
Summary:
This method generated using the remodel generation script does not match with the header file.

 The method declared in .h file is:
    - (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object;

But implementation generated in .m file is:
    - (BOOL)isEqualToDiffableObject:(nullable id)object
    {
        return [self isEqual:object];
    }

This fix is to generate the implementation as:
    - (BOOL)isEqualToDiffableObject:(nullable id<IGListDiffable>)object
    {
        return [self isEqual:object];
    }

Reviewed By: natestedman

Differential Revision: D27146804

fbshipit-source-id: f7d0d598e97e0ef47948b973ff38d9a319cd4b0d
2021-03-18 02:20:45 -07:00
..
Best Practices and FAQ.md Update RxIGListKit link on Best Practices & FAQ (#1375) 2019-11-18 07:30:20 -08:00
Generating your models using remodel.md Add <IGListDiffable> to isEqualToDiffableObject method argument type 2021-03-18 02:20:45 -07:00
Getting Started.md Update Getting Started.md 2017-10-26 10:42:37 -07:00
IGListDiffable and Equality.md Spelling & General Fixes 2017-05-25 08:03:37 -07:00
Installation.md Update the version to be 4.0 2019-11-20 16:23:15 -08:00
Migration.md Split IGListKit and IGListDiffKit (#1377) 2019-10-31 08:26:12 -07:00
Modeling and Binding.md Fix broken image links in Modeling and Binding.md (#1348) 2019-08-01 16:44:23 -07:00
VISION.md Minor grammar fix (#1366) 2019-09-16 12:10:34 -07:00
Working with Core Data.md Fixed the typo in the Core Data guide 2017-06-29 17:09:49 -07:00
Working with UICollectionView.md Create Working with UICollectionView guide 2017-04-18 08:47:42 -07:00