From 7a34b2982f9247d2b81b81024fa68737737652f1 Mon Sep 17 00:00:00 2001 From: Michael Kearns Date: Wed, 15 Jul 2015 22:04:02 +0100 Subject: [PATCH] Reword `_.merge` docs for clarity. [ci skip] --- lodash.src.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index de9337583..6f9544060 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -9087,9 +9087,9 @@ } /** - * Recursively merges own enumerable properties of the source object(s), that - * don't resolve to `undefined` into the destination object. Subsequent sources - * overwrite property assignments of previous sources. + * Recursively merges own enumerable properties of the source object(s) into the + * destination object, for source properties which don't resolve to `undefined`. + * Subsequent sources overwrite property assignments of previous sources. * * @static * @memberOf _