Minor documentation cleanup for paginator

This commit is contained in:
Blake Watters
2012-02-16 10:48:24 -05:00
parent 4d48ef4729
commit d456c37a20

View File

@@ -135,10 +135,16 @@ typedef void(^RKObjectPaginatorDidFailWithErrorBlock)(NSError *error, RKObjectLo
/** @name Pagination Metadata */
/// The number of objects to load per page
/**
The number of objects to load per page
*/
@property (nonatomic, assign) NSUInteger perPage;
/// Returns YES when the paginator has loaded a page of objects
/**
A Boolean value indicating if the paginator has loaded a page of objects
@returns YES when the paginator has loaded a page of objects
*/
@property (nonatomic, readonly, getter = isLoaded) BOOL loaded;
/**