From f6714308db8b6e492b44ddb42c2cb10dc7a56f97 Mon Sep 17 00:00:00 2001
From: Richard Topchii <8013017+richardtop@users.noreply.github.com>
Date: Wed, 25 Jul 2018 14:10:18 -0700
Subject: [PATCH] Fix typo (#1224)

Summary:
Issue fixed: #

- [x] All tests pass. Demo project builds and runs.
- [x] I have reviewed the [contributing guide](https://github.com/Instagram/IGListKit/blob/master/.github/CONTRIBUTING.md)
Pull Request resolved: https://github.com/Instagram/IGListKit/pull/1224

Differential Revision: D9003381

Pulled By: rnystrom

fbshipit-source-id: d0369d82b3f20bb15b94515d34d9667c34790fb2
---
 Guides/Best Practices and FAQ.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Guides/Best Practices and FAQ.md b/Guides/Best Practices and FAQ.md
index 1ec81b813..f80b24fc1 100644
--- a/Guides/Best Practices and FAQ.md	
+++ b/Guides/Best Practices and FAQ.md	
@@ -72,7 +72,7 @@ See discussion at [#184](https://github.com/Instagram/IGListKit/issues/184).
 
 #### I have a *huge* data set and [`-performUpdatesAnimated: completion:`](https://instagram.github.io/IGListKit/Classes/IGListAdapter.html#/c:objc(cs)IGListAdapter(im)performUpdatesAnimated:completion:) is *super* slow. What do I do?
 
-If you have multiple thousands of items and you cannot batch them in, you'll see performance issues with `-performUpdatesAnimated: completion:`. The real bottle neck behind the scenes here is `UICollectionView` attempting to insert so many cells at once. Instead, call [`-reloadDataWithCompletion:`](https://instagram.github.io/IGListKit/Classes/IGListAdapter.html#/c:objc(cs)IGListAdapter(im)reloadDataWithCompletion:) when you first load data. Behind the scenes, this method *does not* do any diffing and simply calls `-reloadData` on `UICollectionView`. For subsequent updates, you can then use `-performUpdatesAnimated: completion:`.
+If you have multiple thousands of items and you cannot batch them in, you'll see performance issues with `-performUpdatesAnimated: completion:`. The real bottleneck behind the scenes here is `UICollectionView` attempting to insert so many cells at once. Instead, call [`-reloadDataWithCompletion:`](https://instagram.github.io/IGListKit/Classes/IGListAdapter.html#/c:objc(cs)IGListAdapter(im)reloadDataWithCompletion:) when you first load data. Behind the scenes, this method *does not* do any diffing and simply calls `-reloadData` on `UICollectionView`. For subsequent updates, you can then use `-performUpdatesAnimated: completion:`.
 
 #### How do I use IGListKit and estimated cell sizes with Auto Layout?