Skip to content

Commit

Permalink
Merge pull request #3 from chroman-forks/master
Browse files Browse the repository at this point in the history
Fix minor typo
  • Loading branch information
JaviSoto committed Dec 5, 2013
2 parents 7886a55 + 133ed4a commit 805648a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion JSDecoupledAppDelegate/JSDecoupledAppDelegate.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
@property (strong, nonatomic) id<JSApplicationRemoteNotificationsDelegate> remoteNotificationsDelegate;
@property (strong, nonatomic) id<JSApplicationLocalNotificationsDelegate> localNotificationsDelegate;
@property (strong, nonatomic) id<JSApplicationStateRestorationDelegate> stateRestorationDelegate;
@property (strong, nonatomic) id<JSApplicationURLResourceOpeningDelegate> URLResouceOpeningDelegate;
@property (strong, nonatomic) id<JSApplicationURLResourceOpeningDelegate> URLResourceOpeningDelegate;
@property (strong, nonatomic) id<JSApplicationProtectedDataDelegate> protectedDataDelegate;

@end
Expand Down
4 changes: 2 additions & 2 deletions JSDecoupledAppDelegate/JSDecoupledAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
NSStringFromSelector(@selector(remoteNotificationsDelegate)),
NSStringFromSelector(@selector(localNotificationsDelegate)),
NSStringFromSelector(@selector(stateRestorationDelegate)),
NSStringFromSelector(@selector(URLResouceOpeningDelegate)),
NSStringFromSelector(@selector(URLResourceOpeningDelegate)),
NSStringFromSelector(@selector(protectedDataDelegate)),
];
});
Expand Down Expand Up @@ -270,7 +270,7 @@ - (void)application:(UIApplication *)application didDecodeRestorableStateWithCod

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
return [self.URLResouceOpeningDelegate application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
return [self.URLResourceOpeningDelegate application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
}

#pragma mark - JSApplicationProtectedDataDelegate
Expand Down

0 comments on commit 805648a

Please sign in to comment.