From ca96692715fb97ec320483512fb45daa58ea490a Mon Sep 17 00:00:00 2001 From: Arkadiusz Holko Date: Thu, 3 Dec 2015 17:55:28 +0100 Subject: [PATCH] Add missing articles in cell blurring example in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 23afe398..510e6cc0 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ extension NSURLSession { Lets assume that there is a scenario where you want to display blurred images in a table view. The images should be first fetched from URL, then decoded and then blurred. -It would also be nice if that entire process could be cancelled if cell exits visible table view area because bandwidth and processor time for blurring are expensive. +It would also be nice if that entire process could be cancelled if a cell exits the visible table view area because bandwidth and processor time for blurring are expensive. It would also be nice if we didn't just immediately start to fetch image once the cell enters visible area because if user swipes really fast there could be a lot of requests fired and cancelled.