From 552053a5da5923e621df0ef18f656618fd3ec850 Mon Sep 17 00:00:00 2001 From: LinkThrow Date: Thu, 24 Nov 2016 10:15:10 -0800 Subject: [PATCH] Broken link to full 'LabelSectionController.swift' Summary: - [ ] All tests pass. Demo project builds and runs. - [ ] I added tests, an experiment, or detailed why my change isn't tested. - [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Replaced with direct link in repo Closes https://github.com/Instagram/IGListKit/pull/254 Differential Revision: D4231946 Pulled By: rnystrom fbshipit-source-id: 75635e12cd8f4f047d8afc0d6dd6008136bd5d26 --- 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 f8622680..6e470351 100644 --- a/Guides/Getting Started.md +++ b/Guides/Getting Started.md @@ -10,7 +10,7 @@ After installing `IGListKit`, creating a new list is easy. Creating a new section controller is simple. You subclass `IGListSectionController` and conform to the `IGListSectionType` protocol. Once you conform to `IGListSectionType`, the compiler will make sure you implement all of the required methods. -Take a look at [LabelSectionController](Examples/Examples-iOS/IGListKitExamples/SectionControllers/LabelSectionController.swift) for an example section controller that handles a `String` and configures a single cell with a `UILabel`. +Take a look at [LabelSectionController](https://raw.githubusercontent.com/Instagram/IGListKit/master/Examples/Examples-iOS/IGListKitExamples/SectionControllers/LabelSectionController.swift) for an example section controller that handles a `String` and configures a single cell with a `UILabel`. ```swift class LabelSectionController: IGListSectionController, IGListSectionType {