Skip to content

Commit

Permalink
Fix controllerWillPerformFetch: and controllerDidPerformFetch: doc la…
Browse files Browse the repository at this point in the history
…nguage
  • Loading branch information
hanief committed Apr 27, 2016
1 parent 7940731 commit 3964649
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,16 @@
- (void)controllerDidChangeContent:(nonnull RBQFetchedResultsController *)controller;

/**
* This method is called before the controller performing fetch.
* This method is called before the controller performs the fetch.
*
* @param controller controller instance that performing fetch
* @param controller controller instance that will perform the fetch
*/
- (void)controllerWillPerformFetch:(nonnull RBQFetchedResultsController *)controller;

/**
* This method is called when the controller successfully fetching objects. It will not executed if the fetchRequest is nil.
* This method is called after the controller successfully fetches objects. It will not be called if the fetchRequest is nil.
*
* @param controller controller instance that performing fetch
* @param controller controller instance that performed the fetch
*/
- (void)controllerDidPerformFetch:(nonnull RBQFetchedResultsController *)controller;

Expand Down

0 comments on commit 3964649

Please sign in to comment.