From 9e30cc454265c836f9d783b81dcf44433f2ee2b9 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Sat, 30 Apr 2016 22:02:58 -0500 Subject: [PATCH] Fix docs typo space after sentence in `_.merge`. --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 61bbe228b..18f21915c 100644 --- a/lodash.js +++ b/lodash.js @@ -12600,7 +12600,7 @@ * inherited enumerable string keyed properties of source objects into the * destination object. Source properties that resolve to `undefined` are * skipped if a destination value exists. Array and plain object properties - * are merged recursively.Other objects and value types are overridden by + * are merged recursively. Other objects and value types are overridden by * assignment. Source objects are applied from left to right. Subsequent * sources overwrite property assignments of previous sources. *