From 319bd8a0ebb468a98fd08568f1a2d453ab901d31 Mon Sep 17 00:00:00 2001 From: jcesarmobile Date: Tue, 2 Jun 2020 15:27:18 +0200 Subject: [PATCH] chore: fix receive spelling (#3035) --- .../plugin/notification/TimedNotificationPublisher.java | 2 +- site/docs-md/guides/push-notifications-firebase.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/capacitor/src/main/java/com/getcapacitor/plugin/notification/TimedNotificationPublisher.java b/android/capacitor/src/main/java/com/getcapacitor/plugin/notification/TimedNotificationPublisher.java index 24f065d6fe..260f544d72 100644 --- a/android/capacitor/src/main/java/com/getcapacitor/plugin/notification/TimedNotificationPublisher.java +++ b/android/capacitor/src/main/java/com/getcapacitor/plugin/notification/TimedNotificationPublisher.java @@ -13,7 +13,7 @@ /** * Class used to create notification from timer event - * Note: Class is being registered in Android manifest as broadcast reciever + * Note: Class is being registered in Android manifest as broadcast receiver */ public class TimedNotificationPublisher extends BroadcastReceiver { diff --git a/site/docs-md/guides/push-notifications-firebase.md b/site/docs-md/guides/push-notifications-firebase.md index 60b0c81788..29b444daec 100644 --- a/site/docs-md/guides/push-notifications-firebase.md +++ b/site/docs-md/guides/push-notifications-firebase.md @@ -379,7 +379,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { } ``` -If you would like to recieve the firebase FCM token from iOS instead of the raw APNS token, you will need to also change your `AppDelegate.didRegisterForRemoteNotificationsWithDeviceToken` code to look like this: +If you would like to receive the firebase FCM token from iOS instead of the raw APNS token, you will need to also change your `AppDelegate.didRegisterForRemoteNotificationsWithDeviceToken` code to look like this: ```swift func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {