From 70d4fcd30e1e45ea4658efa45f90b467e2d9b43d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20JAIS?= Date: Sun, 29 Sep 2019 13:22:47 +0200 Subject: [PATCH] docs(wonderpush): fix usage example (#3177) --- src/@ionic-native/plugins/wonderpush/index.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/@ionic-native/plugins/wonderpush/index.ts b/src/@ionic-native/plugins/wonderpush/index.ts index c5131acdf..b7ed6cf7f 100644 --- a/src/@ionic-native/plugins/wonderpush/index.ts +++ b/src/@ionic-native/plugins/wonderpush/index.ts @@ -151,7 +151,7 @@ export class UserPreferencesMethods extends NestedObject { * * Requires the Cordova plugin `wonderpush-cordova-sdk`. * - * [WonderPush](https://www.wonderpush.com) is the most effective way + * [WonderPush push notifications](https://www.wonderpush.com) are the most effective way * to retain your users and grow your audience while remaining fully GDPR compliant. * * @usage @@ -179,17 +179,17 @@ export class UserPreferencesMethods extends NestedObject { * this.wonderPush.addTag('customer'); * * // Personalize - * 1. Store user details. - * 2. Use those details to create segments. - * 3. Include those details in your notifications. + * // 1. Store user details. + * // 2. Use those details to create segments. + * // 3. Include those details in your notifications. * this.wonderPush.putProperties({ * string_name: 'John D.', * int_age: 24 * }); * * // GDPR - * 1. set REQUIRES_USER_CONSENT=true to enable GDPR compliance. - * 2. WonderPush doesn't start until setUserConsent(true) is called. + * // 1. set REQUIRES_USER_CONSENT=true to enable GDPR compliance. + * // 2. WonderPush doesn't start until setUserConsent(true) is called. * const onClick = (userConsent: boolean) => this.wonderPush.setUserConsent(userConsent); * * // Listen to notification clicks