From 4986b607ede2a16aa81881155603c45f99f9c842 Mon Sep 17 00:00:00 2001 From: SrTobi Date: Mon, 23 Nov 2015 00:36:09 +0100 Subject: [PATCH] fixed parameter documentation --- jssha/jssha.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jssha/jssha.d.ts b/jssha/jssha.d.ts index 8ce44f2c1..2b5a2b7e0 100644 --- a/jssha/jssha.d.ts +++ b/jssha/jssha.d.ts @@ -40,7 +40,7 @@ declare module jsSHA { * * @param {string} key The key used to calculate the HMAC * @param {string} inputFormat The format of key, HEX, TEXT, B64, or BYTES - * @param {{encoding : (string|undefined)}=} options Associative array + * @param {{encoding : (string|undefined)}=} encodingOpts Associative array * of input format options */ setHMACKey(key:string, inputFormat:string, encodingOpts?:EncodingOptions):void; @@ -60,7 +60,7 @@ declare module jsSHA { * * @param {string} format The desired output formatting (B64, HEX, or BYTES) * @param {{outputUpper : (boolean|undefined), b64Pad : (string|undefined)}=} - * options Hash list of output formatting options + * outputFormatOpts Hash list of output formatting options * @return {string} The string representation of the hash in the format * specified */ @@ -73,7 +73,7 @@ declare module jsSHA { * @param {string} format The desired output formatting * (B64, HEX, or BYTES) * @param {{outputUpper : (boolean|undefined), b64Pad : (string|undefined)}=} - * options associative array of output formatting options + * outputFormatOpts associative array of output formatting options * @return {string} The string representation of the hash in the format * specified */