From c4acbfe095bfb7586a6c43321c0912b88bb45b1b Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Thu, 1 Dec 2016 18:47:27 -0500 Subject: [PATCH] chore(): tslint --- src/plugins/globalization.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/globalization.ts b/src/plugins/globalization.ts index a7706b71e..f53aa1abd 100644 --- a/src/plugins/globalization.ts +++ b/src/plugins/globalization.ts @@ -93,14 +93,14 @@ export class Globalization { /** * Returns a number formatted as a string according to the client's user preferences. - * @param number {Number} The number to convert + * @param numberToConvert {Number} The number to convert * @param options {Object} Object with property `type` that can be set to: decimal, percent, or currency. */ @Cordova({ successIndex: 1, errorIndex: 2 }) - static numberToString(number: number, options: { type: string }): Promise<{ value: string }> { return; } + static numberToString(numberToConvert: number, options: { type: string }): Promise<{ value: string }> { return; } /** *