Jelajahi Sumber

Merge pull request #22 from sablib/master

Fix typo.
Yaoyuan 9 tahun lalu
induk
melakukan
88184dc130
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  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.