Fix Issue 18492 - DLang STL links are broken

This commit is contained in:
Sebastian Wilzbach 2018-02-23 04:30:15 +01:00
parent 460693c26f
commit adf6113eb9
3 changed files with 4 additions and 4 deletions

View file

@ -118,7 +118,7 @@ Returns:
The number of elements brought to the front, i.e., the length of `back`. The number of elements brought to the front, i.e., the length of `back`.
See_Also: See_Also:
$(HTTP sgi.com/tech/stl/_rotate.html, STL's rotate) $(LINK2 http://en.cppreference.com/w/cpp/algorithm/rotate, STL's `rotate`)
*/ */
size_t bringToFront(InputRange, ForwardRange)(InputRange front, ForwardRange back) size_t bringToFront(InputRange, ForwardRange)(InputRange front, ForwardRange back)
if (isInputRange!InputRange && isForwardRange!ForwardRange) if (isInputRange!InputRange && isForwardRange!ForwardRange)
@ -472,7 +472,7 @@ use $(LREF filter):
/** /**
$(REF retro, std,range) can be used to achieve behavior similar to $(REF retro, std,range) can be used to achieve behavior similar to
$(HTTP sgi.com/tech/stl/copy_backward.html, STL's copy_backward'): $(LINK2 http://en.cppreference.com/w/cpp/algorithm/copy_backward, STL's `copy_backward`'):
*/ */
@safe unittest @safe unittest
{ {

View file

@ -2561,7 +2561,7 @@ the given predicate. If there are no such two elements, returns `r` advanced
until empty. until empty.
See_Also: See_Also:
$(HTTP sgi.com/tech/stl/adjacent_find.html, STL's adjacent_find) $(LINK2 http://en.cppreference.com/w/cpp/algorithm/adjacent_find, STL's `adjacent_find`)
*/ */
Range findAdjacent(alias pred = "a == b", Range)(Range r) Range findAdjacent(alias pred = "a == b", Range)(Range r)
if (isForwardRange!(Range)) if (isForwardRange!(Range))

View file

@ -2,7 +2,7 @@
/** /**
This module is a port of a growing fragment of the $(D_PARAM numeric) This module is a port of a growing fragment of the $(D_PARAM numeric)
header in Alexander Stepanov's $(LINK2 http://sgi.com/tech/stl, header in Alexander Stepanov's $(LINK2 https://en.wikipedia.org/wiki/Standard_Template_Library,
Standard Template Library), with a few additions. Standard Template Library), with a few additions.
Macros: Macros: