From 11a9c58a8e86f57fd58b59f6c45bdd47095e4f20 Mon Sep 17 00:00:00 2001 From: anonymous Date: Sun, 13 Nov 2016 01:25:25 +0100 Subject: [PATCH] XREF -> REF Removing the one that refers to std.algorithm.setops.SetUnion, because that is not documented anymore (it's deprecated). --- std/algorithm/setops.d | 2 +- std/algorithm/sorting.d | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/std/algorithm/setops.d b/std/algorithm/setops.d index 6819fb659a0..0d855925e7d 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 e638b501b59..fb3fd1b3f61 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)) {