Cacheing -> Caching

This commit is contained in:
Blake Watters
2012-05-12 19:24:18 -04:00
parent 15f41c6622
commit 9e75eb14bd
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@
@property (nonatomic, retain, readonly) NSManagedObjectContext *managedObjectContext;
/// @name Cacheing Objects by Attribute
/// @name Caching Objects by Attribute
/**
Caches all instances of an entity using the value for an attribute as the cache key.

View File

@@ -38,7 +38,7 @@ static NSString * const RKInMemoryObjectManagedObjectCacheThreadDictionaryKey =
}
if (! [entityCache isEntity:entity cachedByAttribute:entity.primaryKeyAttribute]) {
RKLogInfo(@"Cacheing instances of Entity '%@' by primary key attribute '%@'", entity.name, entity.primaryKeyAttribute);
RKLogInfo(@"Caching instances of Entity '%@' by primary key attribute '%@'", entity.name, entity.primaryKeyAttribute);
[entityCache cacheObjectsForEntity:entity byAttribute:entity.primaryKeyAttribute];
RKEntityByAttributeCache *attributeCache = [entityCache attributeCacheForEntity:entity attribute:entity.primaryKeyAttribute];
RKLogTrace(@"Cached %d objects", [attributeCache count]);