From b1665288533ebf64b5df23401ed0b7b7420a9750 Mon Sep 17 00:00:00 2001 From: jeop10 Date: Thu, 26 Oct 2017 10:37:17 -0700 Subject: [PATCH] Update Getting Started.md Summary: Update Getting Started file to display that 'IGListDiffable' has been renamed to 'ListDiffable' (as seen on Xcode) Issue fixed: N/A - [ ] All tests pass. Demo project builds and runs. - [ ] 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/964 Differential Revision: D6161503 Pulled By: rnystrom fbshipit-source-id: a3602393bb29a31d05fd9590aaa44f03bd5827d7 --- Guides/Getting Started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guides/Getting Started.md b/Guides/Getting Started.md index cc841f9e..3a194690 100644 --- a/Guides/Getting Started.md +++ b/Guides/Getting Started.md @@ -111,7 +111,7 @@ Both `shayne` and `ann` represent the same *unique* data because they share the To represent this in `IGListKit`'s diffing, add and implement the `IGListDiffable` protocol: ```swift -extension User: IGListDiffable { +extension User: ListDiffable { func diffIdentifier() -> NSObjectProtocol { return primaryKey }