From 9749ac56baf7419d47a6a518728421aede0288e5 Mon Sep 17 00:00:00 2001 From: jdalton Date: Fri, 17 Apr 2015 08:37:55 -0700 Subject: [PATCH] Remove extraneous docs for methods that reference others. [ci skip] --- lodash.src.js | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/lodash.src.js b/lodash.src.js index 002e95804..166da8079 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -7065,17 +7065,6 @@ * The opposite of `_.filter`; this method returns the elements of `collection` * that `predicate` does **not** return truthy for. * - * If a property name is provided for `predicate` the created `_.property` - * style callback returns the property value of the given element. - * - * If a value is also provided for `thisArg` the created `_.matchesProperty` - * style callback returns `true` for elements that have a matching property - * value, else `false`. - * - * If an object is provided for `predicate` the created `_.matches` style - * callback returns `true` for elements that have the properties of the given - * object, else `false`. - * * @static * @memberOf _ * @category Collection @@ -9922,11 +9911,6 @@ /** * The opposite of `_.pick`; this method creates an object composed of the * own and inherited enumerable properties of `object` that are not omitted. - * Property names may be specified as individual arguments or as arrays of - * property names. If `predicate` is provided it is invoked for each property - * of `object` omitting the properties `predicate` returns truthy for. The - * predicate is bound to `thisArg` and invoked with three arguments: - * (value, key, object). * * @static * @memberOf _