Authored by BB9z

Fix a mismatch description.

@@ -138,8 +138,8 @@ typedef void(^SDWebImageCompletedWithFinishedBlock)(UIImage *image, NSError *err @@ -138,8 +138,8 @@ typedef void(^SDWebImageCompletedWithFinishedBlock)(UIImage *image, NSError *err
138 * This block as no return value and takes the requested UIImage as first parameter. 138 * This block as no return value and takes the requested UIImage as first parameter.
139 * In case of error the image parameter is nil and the second parameter may contain an NSError. 139 * In case of error the image parameter is nil and the second parameter may contain an NSError.
140 * 140 *
141 - * The third parameter is a Boolean indicating if the image was retrived from the local cache  
142 - * of from the network. 141 + * The third parameter is an `SDImageCacheType` enum indicating if the image was retrived from
  142 + * the local cache or from the memory cache or from the network.
143 * 143 *
144 * The last parameter is set to NO when the SDWebImageProgressiveDownload option is used and 144 * The last parameter is set to NO when the SDWebImageProgressiveDownload option is used and
145 * the image is downloading. This block is thus called repetidly with a partial image. When 145 * the image is downloading. This block is thus called repetidly with a partial image. When