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 {