Showing with 7 additions and 7 deletions.
  1. +2 −2 std/datetime.d
  2. +1 −1 std/experimental/logger/package.d
  3. +2 −2 std/string.d
  4. +2 −2 std/typecons.d
4 changes: 2 additions & 2 deletions std/datetime.d
Original file line number Diff line number Diff line change
Expand Up @@ -30883,7 +30883,7 @@ else version(Posix)
Windows uses a different set of time zone names than the IANA time zone
database does, and how they correspond to one another changes over time
(particularly when Microsoft updates Windows).
$(WEB http://unicode.org/cldr/data/common/supplemental/windowsZones.xml, windowsZones.xml)
$(WEB unicode.org/cldr/data/common/supplemental/windowsZones.xml, windowsZones.xml)
provides the current conversions (which may or may not match up with what's
on a particular Windows box depending on how up-to-date it is), and
parseTZConversions reads in those conversions from windowsZones.xml so that
Expand All @@ -30902,7 +30902,7 @@ else version(Posix)

Params:
windowsZonesXMLFileText The text from
$(WEB http://unicode.org/cldr/data/common/supplemental/windowsZones.xml, windowsZones.xml)
$(WEB unicode.org/cldr/data/common/supplemental/windowsZones.xml, windowsZones.xml)

Throws:
Exception if there is an error while parsing the given XML.
Expand Down
2 changes: 1 addition & 1 deletion std/experimental/logger/package.d
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Implements logging facilities.
Copyright: Copyright Robert "burner" Schadek 2013 --
License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
Authors: $(WEB http://www.svs.informatik.uni-oldenburg.de/60865.html, Robert burner Schadek)
Authors: $(WEB www.svs.informatik.uni-oldenburg.de/60865.html, Robert burner Schadek)
$(H3 Basic Logging)
Expand Down
4 changes: 2 additions & 2 deletions std/string.d
Original file line number Diff line number Diff line change
Expand Up @@ -2373,7 +2373,7 @@ auto capitalize(S)(auto ref S s)
Allocates memory; use $(LREF lineSplitter) for an alternative that
does not.
Adheres to $(WEB http://www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Adheres to $(WEB www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Params:
s = a string of $(D chars), $(D wchars), or $(D dchars), or any custom
Expand Down Expand Up @@ -2698,7 +2698,7 @@ public:
Does not throw on invalid UTF; such is simply passed unchanged
to the output.
Adheres to $(WEB http://www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Adheres to $(WEB www.unicode.org/versions/Unicode7.0.0/ch05.pdf, Unicode 7.0).
Does not allocate memory.
Expand Down
4 changes: 2 additions & 2 deletions std/typecons.d
Original file line number Diff line number Diff line change
Expand Up @@ -5057,7 +5057,7 @@ unittest
* Returns:
* An initialized $(D RefCounted) containing $(D val).
* See_Also:
* $(WEB http://en.cppreference.com/w/cpp/memory/shared_ptr/make_shared, C++'s make_shared)
* $(WEB en.cppreference.com/w/cpp/memory/shared_ptr/make_shared, C++'s make_shared)
*/
RefCounted!(T, RefCountedAutoInitialize.no) refCounted(T)(T val)
{
Expand Down Expand Up @@ -7152,7 +7152,7 @@ $(UL
Also known as trinary, trivalent, or trilean.
See_Also:
$(WEB https://en.wikipedia.org/wiki/Three-valued_logic,
$(WEB en.wikipedia.org/wiki/Three-valued_logic,
Three Valued Logic on Wikipedia)
*/
struct Ternary
Expand Down