Navigation Menu

Skip to content

Commit

Permalink
Renamed method call from createLists to createList
Browse files Browse the repository at this point in the history
  • Loading branch information
catsby authored and alexrepty committed Sep 4, 2010
1 parent 5c01a51 commit 5d4b723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MGTwitterEngine.h
Expand Up @@ -143,7 +143,7 @@
// mode - Whether your list is public or private. Values can be public or private.
// If no mode is specified the list will be public.
// description - The description to give the list.
- (NSString *)createListsForUser:(NSString *)username withName:(NSString *)listName withOptions:(NSDictionary *)options;
- (NSString *)createListForUser:(NSString *)username withName:(NSString *)listName withOptions:(NSDictionary *)options;

// Direct Message methods

Expand Down
2 changes: 1 addition & 1 deletion MGTwitterEngine.m
Expand Up @@ -1559,7 +1559,7 @@ - (NSString *)getListsForUser:(NSString *)username
responseType:MGTwitterUserLists];
}

- (NSString *)createListsForUser:(NSString *)username withName:(NSString *)listName withOptions:(NSDictionary *)options;
- (NSString *)createListForUser:(NSString *)username withName:(NSString *)listName withOptions:(NSDictionary *)options;
{
if (!username || !listName) {
NSLog(@"returning nil");
Expand Down

0 comments on commit 5d4b723

Please sign in to comment.