From 32158935f84f6d523886396ca8f4b3aa940c1c3c Mon Sep 17 00:00:00 2001 From: Dan J Miller Date: Fri, 24 Jun 2016 23:40:41 -0230 Subject: [PATCH] Change second param of `_.invokeMap` as `path` in docs. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 5d7f993bd..b02c9410b 100644 --- a/lodash.js +++ b/lodash.js @@ -8921,8 +8921,8 @@ /** * Invokes the method at `path` of each element in `collection`, returning * an array of the results of each invoked method. Any additional arguments - * are provided to each invoked method. If `methodName` is a function, it's - * invoked for and `this` bound to, each element in `collection`. + * are provided to each invoked method. If `path` is a function, it's invoked + * for, and `this` bound to, each element in `collection`. * * @static * @memberOf _