Просмотр исходного кода

Merge pull request #22 from sablib/master

Fix typo.
Yaoyuan 9 лет назад
Родитель
Сommit
88184dc130
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      YYCache/YYDiskCache.h

+ 2 - 2
YYCache/YYDiskCache.h

@@ -51,7 +51,7 @@
 @property (readonly) NSUInteger inlineThreshold;
 
 /**
- If this block in not nil, then the block will be used to archive object instead
+ If this block is not nil, then the block will be used to archive object instead
  of NSKeyedArchiver. You can use this block to support the objects which do not
  conform to the `NSCoding` protocol.
  
@@ -60,7 +60,7 @@
 @property (copy) NSData *(^customArchiveBlock)(id object);
 
 /**
- If this block in not nil, then the block will be used to unarchive object instead
+ If this block is not nil, then the block will be used to unarchive object instead
  of NSKeyedUnarchiver. You can use this block to support the objects which do not
  conform to the `NSCoding` protocol.