Skip to content

Commit 63150ef

Browse files
committed
Documentation fixes.
1 parent 00f0f62 commit 63150ef

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lodash.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15588,7 +15588,7 @@
1558815588
* // => [{ 'a': 4, 'b': 5, 'c': 6 }]
1558915589
*
1559015590
* // Checking for several possible values
15591-
* _.filter(users, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })]));
15591+
* _.filter(objects, _.overSome([_.matches({ 'a': 1 }), _.matches({ 'a': 4 })]));
1559215592
* // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]
1559315593
*/
1559415594
function matches(source) {
@@ -15625,7 +15625,7 @@
1562515625
* // => { 'a': 4, 'b': 5, 'c': 6 }
1562615626
*
1562715627
* // Checking for several possible values
15628-
* _.filter(users, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)]));
15628+
* _.filter(objects, _.overSome([_.matchesProperty('a', 1), _.matchesProperty('a', 4)]));
1562915629
* // => [{ 'a': 1, 'b': 2, 'c': 3 }, { 'a': 4, 'b': 5, 'c': 6 }]
1563015630
*/
1563115631
function matchesProperty(path, srcValue) {

0 commit comments

Comments
 (0)