From 98218cab5807d6fa5ac29b70f526333e9135a960 Mon Sep 17 00:00:00 2001 From: Rusty Bailey Date: Thu, 25 May 2017 08:18:56 -0700 Subject: [PATCH] Fix typo: experiements > experiments. Summary: Issue fixed: #773 - [ ] 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. - [ ] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md) Closes https://github.com/Instagram/IGListKit/pull/776 Differential Revision: D5129343 Pulled By: rnystrom fbshipit-source-id: 127126545f246e5431636642f203c8150b6a547b --- Source/Common/IGListExperiments.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Common/IGListExperiments.h b/Source/Common/IGListExperiments.h index 82e90541..c47166c6 100644 --- a/Source/Common/IGListExperiments.h +++ b/Source/Common/IGListExperiments.h @@ -16,7 +16,7 @@ */ NS_SWIFT_NAME(ListExperiment) typedef NS_OPTIONS (NSInteger, IGListExperiment) { - /// Specifies no experiements. + /// Specifies no experiments. IGListExperimentNone = 1 << 1, };