Fix comments in code

This commit is contained in:
zhongwuzw 2018-11-15 21:13:27 +08:00
parent 772b79c824
commit 8c7764e122
2 changed files with 3 additions and 3 deletions

View File

@ -167,7 +167,7 @@ FOUNDATION_EXPORT SDImageCoderOption _Nonnull const SDImageCoderWebImageContext;
/**
Total animated frame count.
It the frame count is less than 1, then the methods below will be ignored.
If the frame count is less than 1, then the methods below will be ignored.
@return Total animated frame count.
*/

View File

@ -20,7 +20,7 @@
- by default we internally set coders = `IOCoder`, `GIFCoder`
- calling `coders` will return `@[IOCoder, GIFCoder]`
- call `[addCoder:[MyCrazyCoder new]]`
- calling `coders` now returns `@[MyCrazyCoder, IOCoder, GIFCoder]`
- calling `coders` now returns `@[IOCoder, GIFCoder, MyCrazyCoder]`
Coders
------
@ -29,7 +29,7 @@
Those methods are called on each coder in the array (using the priority order) until one of them returns YES.
That means that coder can decode that data / encode to that format
*/
@interface SDImageCodersManager : NSObject<SDImageCoder>
@interface SDImageCodersManager : NSObject <SDImageCoder>
/**
Returns the global shared coders manager instance.