Authored by Bogdan Poplauschi

Fixed other misspells from appledoc (additions to #829)

@@ -63,7 +63,7 @@ @@ -63,7 +63,7 @@
63 * @param completedBlock A block called when operation has been completed. This block has no return value 63 * @param completedBlock A block called when operation has been completed. This block has no return value
64 * and takes the requested UIImage as first parameter. In case of error the image parameter 64 * and takes the requested UIImage as first parameter. In case of error the image parameter
65 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 65 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
66 - * indicating if the image was retrived from the local cache of from the network. 66 + * indicating if the image was retrived from the local cache or from the network.
67 * The forth parameter is the original image url. 67 * The forth parameter is the original image url.
68 */ 68 */
69 - (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock; 69 - (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock;
@@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
78 * @param completedBlock A block called when operation has been completed. This block has no return value 78 * @param completedBlock A block called when operation has been completed. This block has no return value
79 * and takes the requested UIImage as first parameter. In case of error the image parameter 79 * and takes the requested UIImage as first parameter. In case of error the image parameter
80 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 80 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
81 - * indicating if the image was retrived from the local cache of from the network. 81 + * indicating if the image was retrived from the local cache or from the network.
82 * The forth parameter is the original image url. 82 * The forth parameter is the original image url.
83 */ 83 */
84 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock; 84 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock;
@@ -94,7 +94,7 @@ @@ -94,7 +94,7 @@
94 * @param completedBlock A block called when operation has been completed. This block has no return value 94 * @param completedBlock A block called when operation has been completed. This block has no return value
95 * and takes the requested UIImage as first parameter. In case of error the image parameter 95 * and takes the requested UIImage as first parameter. In case of error the image parameter
96 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 96 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
97 - * indicating if the image was retrived from the local cache of from the network. 97 + * indicating if the image was retrived from the local cache or from the network.
98 * The forth parameter is the original image url. 98 * The forth parameter is the original image url.
99 */ 99 */
100 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock; 100 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock;
@@ -70,7 +70,7 @@ @@ -70,7 +70,7 @@
70 * @param completedBlock A block called when operation has been completed. This block has no return value 70 * @param completedBlock A block called when operation has been completed. This block has no return value
71 * and takes the requested UIImage as first parameter. In case of error the image parameter 71 * and takes the requested UIImage as first parameter. In case of error the image parameter
72 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 72 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
73 - * indicating if the image was retrived from the local cache of from the network. 73 + * indicating if the image was retrived from the local cache or from the network.
74 * The forth parameter is the original image url. 74 * The forth parameter is the original image url.
75 */ 75 */
76 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletionBlock)completedBlock; 76 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletionBlock)completedBlock;
@@ -86,7 +86,7 @@ @@ -86,7 +86,7 @@
86 * @param completedBlock A block called when operation has been completed. This block has no return value 86 * @param completedBlock A block called when operation has been completed. This block has no return value
87 * and takes the requested UIImage as first parameter. In case of error the image parameter 87 * and takes the requested UIImage as first parameter. In case of error the image parameter
88 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 88 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
89 - * indicating if the image was retrived from the local cache of from the network. 89 + * indicating if the image was retrived from the local cache or from the network.
90 * The forth parameter is the original image url. 90 * The forth parameter is the original image url.
91 */ 91 */
92 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock; 92 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock;
@@ -103,7 +103,7 @@ @@ -103,7 +103,7 @@
103 * @param completedBlock A block called when operation has been completed. This block has no return value 103 * @param completedBlock A block called when operation has been completed. This block has no return value
104 * and takes the requested UIImage as first parameter. In case of error the image parameter 104 * and takes the requested UIImage as first parameter. In case of error the image parameter
105 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 105 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
106 - * indicating if the image was retrived from the local cache of from the network. 106 + * indicating if the image was retrived from the local cache or from the network.
107 * The forth parameter is the original image url. 107 * The forth parameter is the original image url.
108 */ 108 */
109 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock; 109 - (void)sd_setImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock;
@@ -152,7 +152,7 @@ @@ -152,7 +152,7 @@
152 * @param completedBlock A block called when operation has been completed. This block has no return value 152 * @param completedBlock A block called when operation has been completed. This block has no return value
153 * and takes the requested UIImage as first parameter. In case of error the image parameter 153 * and takes the requested UIImage as first parameter. In case of error the image parameter
154 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 154 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
155 - * indicating if the image was retrived from the local cache of from the network. 155 + * indicating if the image was retrived from the local cache or from the network.
156 * The forth parameter is the original image url. 156 * The forth parameter is the original image url.
157 */ 157 */
158 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletionBlock)completedBlock; 158 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state completed:(SDWebImageCompletionBlock)completedBlock;
@@ -168,7 +168,7 @@ @@ -168,7 +168,7 @@
168 * @param completedBlock A block called when operation has been completed. This block has no return value 168 * @param completedBlock A block called when operation has been completed. This block has no return value
169 * and takes the requested UIImage as first parameter. In case of error the image parameter 169 * and takes the requested UIImage as first parameter. In case of error the image parameter
170 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 170 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
171 - * indicating if the image was retrived from the local cache of from the network. 171 + * indicating if the image was retrived from the local cache or from the network.
172 * The forth parameter is the original image url. 172 * The forth parameter is the original image url.
173 */ 173 */
174 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock; 174 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock;
@@ -184,7 +184,7 @@ @@ -184,7 +184,7 @@
184 * @param completedBlock A block called when operation has been completed. This block has no return value 184 * @param completedBlock A block called when operation has been completed. This block has no return value
185 * and takes the requested UIImage as first parameter. In case of error the image parameter 185 * and takes the requested UIImage as first parameter. In case of error the image parameter
186 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 186 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
187 - * indicating if the image was retrived from the local cache of from the network. 187 + * indicating if the image was retrived from the local cache or from the network.
188 * The forth parameter is the original image url. 188 * The forth parameter is the original image url.
189 */ 189 */
190 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock; 190 - (void)sd_setBackgroundImageWithURL:(NSURL *)url forState:(UIControlState)state placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock;
@@ -92,7 +92,7 @@ @@ -92,7 +92,7 @@
92 * @param completedBlock A block called when operation has been completed. This block has no return value 92 * @param completedBlock A block called when operation has been completed. This block has no return value
93 * and takes the requested UIImage as first parameter. In case of error the image parameter 93 * and takes the requested UIImage as first parameter. In case of error the image parameter
94 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 94 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
95 - * indicating if the image was retrived from the local cache of from the network. 95 + * indicating if the image was retrived from the local cache or from the network.
96 * The forth parameter is the original image url. 96 * The forth parameter is the original image url.
97 */ 97 */
98 - (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock; 98 - (void)sd_setImageWithURL:(NSURL *)url completed:(SDWebImageCompletionBlock)completedBlock;
@@ -107,7 +107,7 @@ @@ -107,7 +107,7 @@
107 * @param completedBlock A block called when operation has been completed. This block has no return value 107 * @param completedBlock A block called when operation has been completed. This block has no return value
108 * and takes the requested UIImage as first parameter. In case of error the image parameter 108 * and takes the requested UIImage as first parameter. In case of error the image parameter
109 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 109 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
110 - * indicating if the image was retrived from the local cache of from the network. 110 + * indicating if the image was retrived from the local cache or from the network.
111 * The forth parameter is the original image url. 111 * The forth parameter is the original image url.
112 */ 112 */
113 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock; 113 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder completed:(SDWebImageCompletionBlock)completedBlock;
@@ -123,7 +123,7 @@ @@ -123,7 +123,7 @@
123 * @param completedBlock A block called when operation has been completed. This block has no return value 123 * @param completedBlock A block called when operation has been completed. This block has no return value
124 * and takes the requested UIImage as first parameter. In case of error the image parameter 124 * and takes the requested UIImage as first parameter. In case of error the image parameter
125 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 125 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
126 - * indicating if the image was retrived from the local cache of from the network. 126 + * indicating if the image was retrived from the local cache or from the network.
127 * The forth parameter is the original image url. 127 * The forth parameter is the original image url.
128 */ 128 */
129 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock; 129 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options completed:(SDWebImageCompletionBlock)completedBlock;
@@ -140,7 +140,7 @@ @@ -140,7 +140,7 @@
140 * @param completedBlock A block called when operation has been completed. This block has no return value 140 * @param completedBlock A block called when operation has been completed. This block has no return value
141 * and takes the requested UIImage as first parameter. In case of error the image parameter 141 * and takes the requested UIImage as first parameter. In case of error the image parameter
142 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 142 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
143 - * indicating if the image was retrived from the local cache of from the network. 143 + * indicating if the image was retrived from the local cache or from the network.
144 * The forth parameter is the original image url. 144 * The forth parameter is the original image url.
145 */ 145 */
146 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletionBlock)completedBlock; 146 - (void)sd_setImageWithURL:(NSURL *)url placeholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletionBlock)completedBlock;
@@ -157,7 +157,7 @@ @@ -157,7 +157,7 @@
157 * @param completedBlock A block called when operation has been completed. This block has no return value 157 * @param completedBlock A block called when operation has been completed. This block has no return value
158 * and takes the requested UIImage as first parameter. In case of error the image parameter 158 * and takes the requested UIImage as first parameter. In case of error the image parameter
159 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean 159 * is nil and the second parameter may contain an NSError. The third parameter is a Boolean
160 - * indicating if the image was retrived from the local cache of from the network. 160 + * indicating if the image was retrived from the local cache or from the network.
161 * The forth parameter is the original image url. 161 * The forth parameter is the original image url.
162 */ 162 */
163 - (void)sd_setImageWithPreviousCachedImageWithURL:(NSURL *)url andPlaceholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletionBlock)completedBlock; 163 - (void)sd_setImageWithPreviousCachedImageWithURL:(NSURL *)url andPlaceholderImage:(UIImage *)placeholder options:(SDWebImageOptions)options progress:(SDWebImageDownloaderProgressBlock)progressBlock completed:(SDWebImageCompletionBlock)completedBlock;