Adjust indenting.

This commit is contained in:
BB9z 2013-05-27 18:07:31 +08:00
parent 1f31915e59
commit 5b6e84a953
1 changed files with 7 additions and 8 deletions

View File

@ -138,13 +138,12 @@ typedef void(^SDWebImageCompletedWithFinishedBlock)(UIImage *image, NSError *err
* This block as no return value and takes the requested UIImage as first parameter. * 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. * In case of error the image parameter is nil and the second parameter may contain an NSError.
* *
* The third parameter is an `SDImageCacheType` enum indicating if the image was retrived from * The third parameter is an `SDImageCacheType` enum indicating if the image was retrived from the local cache
* the local cache or from the memory cache or from the network. * or from the memory cache or from the network.
* *
* The last parameter is set to NO when the SDWebImageProgressiveDownload option is used and * The last parameter is set to NO when the SDWebImageProgressiveDownload option is used and the image is
* the image is downloading. This block is thus called repetidly with a partial image. When * downloading. This block is thus called repetidly with a partial image. When image is fully downloaded, the
* image is fully downloaded, the block is called a last time with the full image and the last * block is called a last time with the full image and the last parameter set to YES.
* parameter set to YES.
* *
* @return Returns a cancellable NSOperation * @return Returns a cancellable NSOperation
*/ */