diff --git a/index.js b/index.js index d4db5ba..3fbbddb 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,7 @@ var crypto = require('crypto'); * Sign the given `val` with `secret`. * * @param {String} val - * @param {String | NodeJS.ArrayBufferView | crypto.KeyObject} secret + * @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret * @return {String} * @api private */ @@ -28,7 +28,7 @@ exports.sign = function(val, secret){ * returning `false` if the signature is invalid. * * @param {String} input - * @param {String | NodeJS.ArrayBufferView | crypto.KeyObject} secret + * @param {String|NodeJS.ArrayBufferView|crypto.KeyObject} secret * @return {String|Boolean} * @api private */