diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index 6819fb659..0d855925e 100644 --- a/std/algorithm/setops.d +++ b/std/algorithm/setops.d @@ -1293,7 +1293,7 @@ Returns: A range containing the unique union of the given ranges. See_Also: - $(XREF algorithm, sorting, merge) + $(REF merge, std,algorithm,sorting) */ auto setUnion(alias less = "a < b", Rs...) (Rs rs) diff --git a/std/algorithm/sorting.d b/std/algorithm/sorting.d index e638b501b..fb3fd1b3f 100644 --- a/std/algorithm/sorting.d +++ b/std/algorithm/sorting.d @@ -1055,9 +1055,6 @@ Params: Returns: A range containing the union of the given ranges. - -See_Also: - $(XREF algorithm, setops, SetUnion) */ struct Merge(alias less = "a < b", Rs...) if (allSatisfy!(isInputRange, Rs)) {