Skip to content

Commit 2ff569d

Browse files
paulb777mikehardy
andauthored
refactor: fix typos (invertase#7618)
* fix typo * second typo * style(lint): `yarn lint:ios:fix` --------- Co-authored-by: Mike Hardy <[email protected]>
1 parent dce60cf commit 2ff569d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ To run end-to-end tests for `iOS`, please run:
139139
- `yarn tests:emulator:start` - runs Firestore emulator for Firestore tests.
140140
- `yarn tests:ios:test` - runs tests using Detox library. Tests for each package can be found in the `e2e` directory (i.e. `[PACKAGE]/e2e/*.e2e.js`)
141141

142-
See it's local testing guide [here](https://github.com/invertase/react-native-firebase/blob/main/tests/README.md) to get started
142+
See its local testing guide [here](https://github.com/invertase/react-native-firebase/blob/main/tests/README.md) to get started
143143
with `e2e` testing this project.
144144

145145
---

packages/messaging/ios/RNFBMessaging/RNFBMessaging+AppDelegate.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,8 @@ - (void)application:(UIApplication *)application
122122
for (id appId in [FIRApp allApps]) {
123123
FIRApp *app = [[FIRApp allApps] objectForKey:appId];
124124
if ([[FIRAuth authWithApp:app] canHandleNotification:userInfo]) {
125-
DLog(
126-
@"didReceiveRemoteNotification Firebase Auth handeled the notification with instance: %@",
127-
app.name);
125+
DLog(@"didReceiveRemoteNotification Firebase Auth handled the notification with instance: %@",
126+
app.name);
128127
completionHandler(UIBackgroundFetchResultNoData);
129128
return;
130129
}

0 commit comments

Comments
 (0)