diff --git a/lodash.js b/lodash.js index 98b8f014b..55b2bea6c 100644 --- a/lodash.js +++ b/lodash.js @@ -105,7 +105,7 @@ 'toLocaleString', 'toString', 'valueOf' ]; - /** Used to make template sourceURLs easier to identify */ + /** Used to make template `sourceURL`s easier to identify */ var templateCounter = 0; /** `Object#toString` result shortcuts */ @@ -648,7 +648,7 @@ splice = arrayRef.splice, unshift = arrayRef.unshift; - /** Used to set meta data on functions */ + /** Used to set metadata on functions */ var defineProperty = (function() { // IE 8 only accepts DOM elements try { @@ -1014,7 +1014,7 @@ /** * The base implementation of `_.bind` that creates the bound function and - * sets its meta data. + * sets its metadata. * * @private * @param {Array} data The metadata array. @@ -1229,7 +1229,7 @@ /** * The base implementation of `createWrapper` that creates the wrapper and - * sets its meta data. + * sets its metadata. * * @private * @param {Array} data The metadata array. @@ -7251,7 +7251,7 @@ * settings object is provided it will override `_.templateSettings` for the * template. * - * Note: In the development build, `_.template` utilizes sourceURLs for easier debugging. + * Note: In the development build, `_.template` utilizes `sourceURL`s for easier debugging. * See the [HTML5 Rocks article on sourcemaps](http://www.html5rocks.com/en/tutorials/developertools/sourcemaps/#toc-sourceurl) * for more details. * @@ -7271,7 +7271,7 @@ * @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} [options.sourceURL] The sourceURL of the template's compiled source. + * @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 the interpolated string if a data object * is provided, else the compiled template function. @@ -7309,7 +7309,7 @@ * _.template(list, { 'people': ['fred', 'barney'] }, { 'imports': { 'jq': jQuery } }); * // => '