Cross reference _.matches and _.isMatch in docs. [ci skip]

This commit is contained in:
John-David Dalton
2016-02-15 10:22:04 -08:00
parent 6e399ce311
commit dc2fc9428d

View File

@@ -10068,8 +10068,9 @@
} }
/** /**
* Performs a deep comparison between `object` and `source` to determine if * Performs a partial deep comparison between `object` and `source` to
* `object` contains equivalent property values. * determine if `object` contains equivalent property values. This method is
* equivalent to a `_.matches` function when `source` is partially applied.
* *
* **Note:** This method supports comparing the same values as `_.isEqual`. * **Note:** This method supports comparing the same values as `_.isEqual`.
* *
@@ -13483,9 +13484,10 @@
} }
/** /**
* Creates a function that performs a deep partial comparison between a given * Creates a function that performs a partial deep comparison between a given
* object and `source`, returning `true` if the given object has equivalent * object and `source`, returning `true` if the given object has equivalent
* property values, else `false`. * property values, else `false`. The created function is equivalent to
* `_.isMatch` with a `source` partially applied.
* *
* **Note:** This method supports comparing the same values as `_.isEqual`. * **Note:** This method supports comparing the same values as `_.isEqual`.
* *
@@ -13509,7 +13511,7 @@
} }
/** /**
* Creates a function that performs a deep partial comparison between the * Creates a function that performs a partial deep comparison between the
* value at `path` of a given object to `srcValue`, returning `true` if the * value at `path` of a given object to `srcValue`, returning `true` if the
* object value is equivalent, else `false`. * object value is equivalent, else `false`.
* *