From ad373c93ae63a873e0cda39323ab22fafc6d0489 Mon Sep 17 00:00:00 2001 From: Ramon Henrique Ornelas Date: Wed, 5 Oct 2016 21:32:47 -0300 Subject: [PATCH] docs(paypal): delete ':' of the params (#639) --- src/plugins/pay-pal.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/pay-pal.ts b/src/plugins/pay-pal.ts index fb3c21d71..a4867f524 100644 --- a/src/plugins/pay-pal.ts +++ b/src/plugins/pay-pal.ts @@ -36,8 +36,8 @@ export class PayPal { * UI faster. The preconnect is valid for a limited time, so * the recommended time to preconnect is on page load. * - * @param {String} environment: available options are "PayPalEnvironmentNoNetwork", "PayPalEnvironmentProduction" and "PayPalEnvironmentSandbox" - * @param {PayPalConfiguration} configuration: For Future Payments merchantName, merchantPrivacyPolicyURL and merchantUserAgreementURL must be set be set + * @param {String} environment available options are "PayPalEnvironmentNoNetwork", "PayPalEnvironmentProduction" and "PayPalEnvironmentSandbox" + * @param {PayPalConfiguration} configuration For Future Payments merchantName, merchantPrivacyPolicyURL and merchantUserAgreementURL must be set be set */ @Cordova() static init(environment: PayPalEnvironment, configuration?: PayPalConfiguration): Promise {return; } @@ -53,7 +53,7 @@ export class PayPal { * See https://developer.paypal.com/webapps/developer/docs/integration/mobile/ios-integration-guide/ * for more documentation of the params. * - * @param {PayPalPayment} payment: PayPalPayment object + * @param {PayPalPayment} payment PayPalPayment object */ @Cordova() static renderSinglePaymentUI(payment: PayPalPayment): Promise {return; } @@ -79,7 +79,7 @@ export class PayPal { /** * Please Read Docs on Profile Sharing at https://github.com/paypal/PayPal-iOS-SDK#profile-sharing * - * @param {Array} scopes: scopes Set of requested scope-values. Accepted scopes are: openid, profile, address, email, phone, futurepayments and paypalattributes + * @param {Array} scopes scopes Set of requested scope-values. Accepted scopes are: openid, profile, address, email, phone, futurepayments and paypalattributes * See https://developer.paypal.com/docs/integration/direct/identity/attributes/ for more details **/ @Cordova()