From 3a34e606b83a9a2f4f0a8c8802b148ad0f1ecfae Mon Sep 17 00:00:00 2001 From: Benjamin Tan Date: Thu, 19 Dec 2013 10:57:41 +0800 Subject: [PATCH] Fix _.template docs typo [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index ddae99a85..79d91af34 100644 --- a/lodash.js +++ b/lodash.js @@ -6568,8 +6568,8 @@ * @param {RegExp} [options.evaluate] The "evaluate" delimiter. * @param {Object} [options.imports] An object to import into the template as local variables. * @param {RegExp} [options.interpolate] The "interpolate" delimiter. - * @param {string} [sourceURL] The sourceURL of the template's compiled source. - * @param {string} [variable] The data object variable name. + * @param {string} [options.sourceURL] The sourceURL of the template's compiled source. + * @param {string} [options.variable] The data object variable name. * @returns {Function|string} Returns a compiled function when no `data` object * is given, else it returns the interpolated text. * @example