Skip to content
This repository was archived by the owner on Nov 24, 2021. It is now read-only.

Commit

Permalink
Fix typo in API
Browse files Browse the repository at this point in the history
  • Loading branch information
3lvis committed Jan 30, 2015
1 parent cbcc849 commit 7429d12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ANDYDataStack/ANDYDataStack.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ typedef NS_ENUM(NSInteger, ANDYDataStoreType) {
*/
- (instancetype)initWithModelName:(NSString *)modelName
bundle:(NSBundle *)bundle
storyType:(ANDYDataStoreType)storeType NS_DESIGNATED_INITIALIZER;
storeType:(ANDYDataStoreType)storeType NS_DESIGNATED_INITIALIZER;

/*!
* Provides a NSManagedObjectContext appropriate for use on the main
Expand Down
4 changes: 2 additions & 2 deletions ANDYDataStack/ANDYDataStack.m
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ - (instancetype)initWithModelName:(NSString *)modelName

return [self initWithModelName:modelName
bundle:bundle
storyType:ANDYDataSQLiteStoreType];
storeType:ANDYDataSQLiteStoreType];
}

- (instancetype)initWithModelName:(NSString *)modelName
bundle:(NSBundle *)bundle
storyType:(ANDYDataStoreType)storeType
storeType:(ANDYDataStoreType)storeType
{
self = [super init];
if (!self) return nil;
Expand Down

0 comments on commit 7429d12

Please sign in to comment.