Correct spelling errors

This commit is contained in:
Eric Jensen
2016-03-09 11:29:46 -08:00
parent f97a509541
commit ddd5ff1f75
35 changed files with 68 additions and 69 deletions

View File

@@ -34,7 +34,7 @@ static void *kASSizingQueueContext = &kASSizingQueueContext;
@interface ASDataController () {
NSMutableArray *_externalCompletedNodes; // Main thread only. External data access can immediately query this if available.
NSMutableDictionary *_completedNodes; // Main thread only. External data access can immediately query this if _externalCompletedNodes is unavailable.
NSMutableDictionary *_editingNodes; // Modified on _editingTransactionQueue only. Updates propogated to _completedNodes.
NSMutableDictionary *_editingNodes; // Modified on _editingTransactionQueue only. Updates propagated to _completedNodes.
ASMainSerialQueue *_mainSerialQueue;
@@ -355,7 +355,7 @@ static void *kASSizingQueueContext = &kASSizingQueueContext;
}
/**
* Inserts sections, represented as arrays, into the backing store at the given indicies and notifies the delegate.
* Inserts sections, represented as arrays, into the backing store at the given indices and notifies the delegate.
*
* @discussion The section arrays are inserted into the editing store, then a deep copy of the sections are inserted
* in the completed store on the main thread. The delegate is invoked on the main thread.
@@ -369,7 +369,7 @@ static void *kASSizingQueueContext = &kASSizingQueueContext;
}
/**
* Removes sections at the given indicies from the backing store and notifies the delegate.
* Removes sections at the given indices from the backing store and notifies the delegate.
*
* @discussion Section array are first removed from the editing store, then the associated section in the completed
* store is removed on the main thread. The delegate is invoked on the main thread.