Skip to content

Commit

Permalink
Tweak #2532
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakob Ovrum committed Sep 20, 2014
1 parent 5bbdc63 commit 8169a4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions std/algorithm.d
Expand Up @@ -11479,7 +11479,7 @@ Convenience function. Like find, but only returns whether or not the search
was successful.
See_Also:
$(XREF algorithm, among) for checking a range against multiple possibilities.
$(LREF among) for checking a value against multiple possibilities.
+/
template canFind(alias pred="a == b")
{
Expand Down Expand Up @@ -13732,7 +13732,7 @@ is not _among $(D values). The predicate $(D pred) is used to
compare values, and uses equality by default.
See_Also:
$(XREF algorithm, find) and $(XREF algorithm, canFind) for finding a value in a
$(LREF find) and $(LREF canFind) for finding a value in a
range.
*/
uint among(alias pred = (a, b) => a == b, Value, Values...)
Expand Down

0 comments on commit 8169a4a

Please sign in to comment.