From f1046f1cf1980dd36fe8c507d3494ad212d0e039 Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 15 Feb 2015 23:05:30 -0800 Subject: [PATCH] Consistent use of `lodash` when referencing a `lodash` wrapper. [ci skip] --- lodash.src.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 5a70200b0..98c87ee33 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -11472,7 +11472,7 @@ LazyWrapper.prototype.reverse = lazyReverse; LazyWrapper.prototype.value = lazyValue; - // Add chaining functions to the lodash wrapper. + // Add chaining functions to the `lodash` wrapper. lodash.prototype.chain = wrapperChain; lodash.prototype.commit = wrapperCommit; lodash.prototype.plant = wrapperPlant; @@ -11480,7 +11480,7 @@ lodash.prototype.toString = wrapperToString; lodash.prototype.run = lodash.prototype.toJSON = lodash.prototype.valueOf = lodash.prototype.value = wrapperValue; - // Add function aliases to the lodash wrapper. + // Add function aliases to the `lodash` wrapper. lodash.prototype.collect = lodash.prototype.map; lodash.prototype.head = lodash.prototype.first; lodash.prototype.select = lodash.prototype.filter;