Skip to content

Commit

Permalink
Fix jsdoc type tags. [closes #1976] [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
jdalton committed Feb 10, 2016
1 parent 784ee6a commit feafdb3
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions lodash.js
Expand Up @@ -1509,55 +1509,55 @@
*
* @static
* @memberOf _
* @type Object
* @type {Object}
*/
lodash.templateSettings = {

/**
* Used to detect `data` property values to be HTML-escaped.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'escape': reEscape,

/**
* Used to detect code to be evaluated.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'evaluate': reEvaluate,

/**
* Used to detect `data` property values to inject.
*
* @memberOf _.templateSettings
* @type RegExp
* @type {RegExp}
*/
'interpolate': reInterpolate,

/**
* Used to reference the data object in the template text.
*
* @memberOf _.templateSettings
* @type string
* @type {string}
*/
'variable': '',

/**
* Used to import variables into the compiled template.
*
* @memberOf _.templateSettings
* @type Object
* @type {Object}
*/
'imports': {

/**
* A reference to the `lodash` function.
*
* @memberOf _.templateSettings.imports
* @type Function
* @type {Function}
*/
'_': lodash
}
Expand Down Expand Up @@ -2917,7 +2917,6 @@
* property of prototypes or treat sparse arrays as dense.
*
* @private
* @type Function
* @param {Object} object The object to query.
* @returns {Array} Returns the array of property names.
*/
Expand Down Expand Up @@ -8257,7 +8256,7 @@
*
* @static
* @memberOf _
* @type Function
* @type {Function}
* @category Date
* @returns {number} Returns the timestamp.
* @example
Expand Down Expand Up @@ -9459,7 +9458,7 @@
*
* @static
* @memberOf _
* @type Function
* @type {Function}
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
Expand All @@ -9484,7 +9483,6 @@
*
* @static
* @memberOf _
* @type Function
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is correctly classified, else `false`.
Expand All @@ -9507,7 +9505,6 @@
*
* @static
* @memberOf _
* @type Function
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is array-like, else `false`.
Expand Down Expand Up @@ -9536,7 +9533,6 @@
*
* @static
* @memberOf _
* @type Function
* @category Lang
* @param {*} value The value to check.
* @returns {boolean} Returns `true` if `value` is an array-like object, else `false`.
Expand Down Expand Up @@ -14511,7 +14507,7 @@
*
* @static
* @memberOf _
* @type string
* @type {string}
*/
lodash.VERSION = VERSION;

Expand Down

0 comments on commit feafdb3

Please sign in to comment.