From 68e324d2d00edf3543d20551f2818a9dd7c2c505 Mon Sep 17 00:00:00 2001 From: Adlai Holler Date: Sat, 7 May 2016 15:18:11 -0700 Subject: [PATCH] Improve commentary --- AsyncDisplayKit/Details/ASPINRemoteImageDownloader.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AsyncDisplayKit/Details/ASPINRemoteImageDownloader.m b/AsyncDisplayKit/Details/ASPINRemoteImageDownloader.m index 2a11e703..59a83afb 100644 --- a/AsyncDisplayKit/Details/ASPINRemoteImageDownloader.m +++ b/AsyncDisplayKit/Details/ASPINRemoteImageDownloader.m @@ -135,7 +135,7 @@ completion:(ASImageDownloaderCompletion)completion; { return [[self sharedPINRemoteImageManager] downloadImageWithURL:URL options:PINRemoteImageManagerDownloadOptionsSkipDecode progressDownload:^(int64_t completedBytes, int64_t totalBytes) { - /// If we're targeting the main queue and we're on the main thread, complete immediately. + /// If we're targeting the main queue and we're on the main thread, call immediately. if (ASDisplayNodeThreadIsMain() && callbackQueue == dispatch_get_main_queue()) { downloadProgress(totalBytes / (CGFloat)completedBytes); } else {