From 31e8df4a59853002416e50a11d1fb212ec454027 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 9 Nov 2014 00:07:11 -0800 Subject: [PATCH] Tweak `_.parseInt` doc note. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 98d3e76aa..fadbc428b 100644 --- a/lodash.js +++ b/lodash.js @@ -9527,8 +9527,8 @@ * `undefined` or `0`, a `radix` of `10` is used unless `value` is a hexadecimal, * in which case a `radix` of `16` is used. * - * **Note:** This method avoids differences in native ES3 and ES5 `parseInt` - * implementations. See the [ES5 spec](http://es5.github.io/#E) for more details. + * **Note:** This method aligns with the ES5 implementation of `parseInt`. + * See the [ES5 spec](http://es5.github.io/#E) for more details. * * @static * @memberOf _