Skip to content

Commit

Permalink
[docs] add missing semicolon (#3305)
Browse files Browse the repository at this point in the history
Add missing semicolon to code example
  • Loading branch information
Salakar authored and paulb777 committed Jul 5, 2019
1 parent c8c99aa commit d8a0e5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GoogleUtilities/AppDelegateSwizzler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ by `[GULAppDelegateSwizzler proxyOriginalDelegate]`:

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo;

- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler
- (void)application:(UIApplication *)application didReceiveRemoteNotification:(NSDictionary *)userInfo fetchCompletionHandler:(void (^)(UIBackgroundFetchResult result))completionHandler;
```

If you need to swizzle these methods you can call
Expand Down

0 comments on commit d8a0e5e

Please sign in to comment.