From 47701645994840d3a15771c7eb1834c1127ca3ef Mon Sep 17 00:00:00 2001 From: heshamsalman Date: Thu, 25 May 2017 07:54:15 -0700 Subject: [PATCH] unintercepted => non-intercepted, close #774 Summary: Issue fixed: #774 - [ ] 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/787 Differential Revision: D5129345 Pulled By: rnystrom fbshipit-source-id: 2673191f566a189a1374bfcff8a6639e1cb1fa29 --- Source/Internal/IGListAdapterProxy.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Internal/IGListAdapterProxy.h b/Source/Internal/IGListAdapterProxy.h index f43c763a..e8f2e012 100644 --- a/Source/Internal/IGListAdapterProxy.h +++ b/Source/Internal/IGListAdapterProxy.h @@ -25,8 +25,8 @@ IGLK_SUBCLASSING_RESTRICTED /** Create a new proxy object with targets and interceptor. - @param collectionViewTarget A UICollectionViewDelegate conforming object that receives unintercepted messages. - @param scrollViewTarget A UIScrollViewDelegate conforming object that receives unintercepted messages. + @param collectionViewTarget A UICollectionViewDelegate conforming object that receives non-intercepted messages. + @param scrollViewTarget A UIScrollViewDelegate conforming object that receives non-intercepted messages. @param interceptor An IGListAdapter object that intercepts a set of messages. @return A new IGListAdapterProxy object.