diff --git a/docs/apis/local-notifications.md b/docs/apis/local-notifications.md index 2c68d100..c8acb09f 100644 --- a/docs/apis/local-notifications.md +++ b/docs/apis/local-notifications.md @@ -503,7 +503,7 @@ Use either `at`, `on`, or `every` to schedule notifications. | **`at`** | Date | Schedule a notification at a specific date and time. | 1.0.0 | | **`repeats`** | boolean | Repeat delivery of this notification at the date and time specified by `at`. Only available for iOS and Android. | 1.0.0 | | **`allowWhileIdle`** | boolean | Allow this notification to fire while in [Doze](https://developer.android.com/training/monitoring-device-state/doze-standby) Note that these notifications can only fire [once per 9 minutes, per app](https://developer.android.com/training/monitoring-device-state/doze-standby#assessing_your_app). | 1.0.0 | -| **`on`** | ScheduleOn | Schedule a notification on particular interval(s). This is similar to scheduling [cron](https://en.wikipedia.org/wiki/Cron) jobs. Only available for iOS and Android. | 1.0.0 | +| **`on`** | ScheduleOn | Schedule a notification on particular interval(s). This is similar to scheduling [cron](https://en.wikipedia.org/wiki/Cron) jobs. Only available for iOS and Android. When the `at` property is defined additionally, then the first notification is postponed to that specific date and time (Android only). | 1.0.0 | | **`every`** | ScheduleEvery | Schedule a notification on a particular interval. | 1.0.0 | | **`count`** | number | Limit the number times a notification is delivered by the interval specified by `every`. | 1.0.0 |