Skip to content

Commit ce09af4

Browse files
authored
Merge pull request jashkenas#2623 from Florian-R/matches-link
Doc: Add links to matches.
2 parents 4c6c296 + b245611 commit ce09af4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ <h2 id="collections">Collection Functions (Arrays or Objects)</h2>
585585
<p id="findWhere">
586586
<b class="header">findWhere</b><code>_.findWhere(list, properties)</code>
587587
<br />
588-
Looks through the <b>list</b> and returns the <i>first</i> value that matches
588+
Looks through the <b>list</b> and returns the <i>first</i> value that <a href="#matches">matches</a>
589589
all of the key-value pairs listed in <b>properties</b>.
590590
</p>
591591
<p>
@@ -604,7 +604,7 @@ <h2 id="collections">Collection Functions (Arrays or Objects)</h2>
604604
<b class="header">where</b><code>_.where(list, properties)</code>
605605
<br />
606606
Looks through each value in the <b>list</b>, returning an array of all
607-
the values that contain all of the key-value pairs listed in <b>properties</b>.
607+
the values that <a href="#matches">matches</a> the key-value pairs listed in <b>properties</b>.
608608
</p>
609609
<pre>
610610
_.where(listOfPlays, {author: "Shakespeare", year: 1611});

0 commit comments

Comments
 (0)