From 1f31915e5920b9d4cb7430452a2d7bd19c320e11 Mon Sep 17 00:00:00 2001 From: BB9z Date: Mon, 27 May 2013 18:03:57 +0800 Subject: [PATCH] Fix a mismatch description. --- SDWebImage/SDWebImageManager.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDWebImage/SDWebImageManager.h b/SDWebImage/SDWebImageManager.h index 6e1c57f3..53c7c5df 100644 --- a/SDWebImage/SDWebImageManager.h +++ b/SDWebImage/SDWebImageManager.h @@ -138,8 +138,8 @@ typedef void(^SDWebImageCompletedWithFinishedBlock)(UIImage *image, NSError *err * This block as no return value and takes the requested UIImage as first parameter. * In case of error the image parameter is nil and the second parameter may contain an NSError. * - * The third parameter is a Boolean indicating if the image was retrived from the local cache - * of from the network. + * The third parameter is an `SDImageCacheType` enum indicating if the image was retrived from + * the local cache or from the memory cache or from the network. * * The last parameter is set to NO when the SDWebImageProgressiveDownload option is used and * the image is downloading. This block is thus called repetidly with a partial image. When