From e7c176f9046260aca1fc866356cc5083f2b62d23 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 31 Dec 2014 18:33:01 -0600 Subject: [PATCH] Fix typo in `toString` docs. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index b841918b8..97f36f2cb 100644 --- a/lodash.js +++ b/lodash.js @@ -4015,8 +4015,8 @@ } /** - * Converts `value` to a string if it not one. An empty string is returned - * for `null` or `undefined` values. + * Converts `value` to a string if it is not one. An empty string is + * returned for `null` or `undefined` values. * * @private * @param {*} value The value to process.