From cfe5ea264d9e9029da0ca80d467f09fe0fafb524 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 22 Mar 2016 08:44:23 -0700 Subject: [PATCH] Remove parens from default `options` value doc of `_.truncate`. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 65670256e..0e5f58fd1 100644 --- a/lodash.js +++ b/lodash.js @@ -13678,7 +13678,7 @@ * @since 4.0.0 * @category String * @param {string} [string=''] The string to truncate. - * @param {Object} [options=({})] The options object. + * @param {Object} [options={}] The options object. * @param {number} [options.length=30] The maximum string length. * @param {string} [options.omission='...'] The string to indicate text is omitted. * @param {RegExp|string} [options.separator] The separator pattern to truncate to.