diff --git a/Libraries/PushNotificationIOS/PushNotificationIOS.js b/Libraries/PushNotificationIOS/PushNotificationIOS.js index ff397eb409d..4ff179559c7 100644 --- a/Libraries/PushNotificationIOS/PushNotificationIOS.js +++ b/Libraries/PushNotificationIOS/PushNotificationIOS.js @@ -92,9 +92,9 @@ export type PushNotificationEventName = $Enum<{ * } * // Required for the notification event. You must call the completion handler after handling the remote notification. * - (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo - * fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler { + * fetchCompletionHandler:(void (^)(UIBackgroundFetchResult))completionHandler * { - * [RCTPushNotificationManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; + * [RCTPushNotificationManager didReceiveRemoteNotification:userInfo fetchCompletionHandler:completionHandler]; * } * // Required for the registrationError event. * - (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error