From a5a21235dcc7d55f5aa41ad320a59de7c072161f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 25 Feb 2016 08:34:43 -0800 Subject: [PATCH] Add mdn references to `_.toLower` and `_.toUpper`. [ci skip] --- lodash.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 18a974b28..211a9c6d0 100644 --- a/lodash.js +++ b/lodash.js @@ -12945,7 +12945,8 @@ } /** - * Converts `string`, as a whole, to lower case. + * Converts `string`, as a whole, to lower case just like + * [String#toLowerCase](https://mdn.io/toLowerCase). * * @static * @memberOf _ @@ -12968,7 +12969,8 @@ } /** - * Converts `string`, as a whole, to upper case. + * Converts `string`, as a whole, to upper case just like + * [String#toUpperCase](https://mdn.io/toUpperCase). * * @static * @memberOf _