Showing with 105 additions and 118 deletions.
  1. +3 −11 changelog.dd
  2. +2 −2 std/concurrency.d
  3. +71 −72 std/datetime.d
  4. +11 −11 std/net/curl.d
  5. +2 −2 std/process.d
  6. +16 −20 std/string.d
14 changes: 3 additions & 11 deletions changelog.dd
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ $(LI $(LNAME2 process, Process creation in `std.process` was sped up on Posix.)
$(P Previously, Posix systems would attempt to close every file descriptor
from 3 to the maximum file descriptor number if `inheritFDs` was not
specified with `spawnProcess`, `pipeProcess`, etc.
$(STDMODREF process, std.process) now uses `poll()` to determine which
$(MREF std,process) now uses `poll()` to determine which
descriptors need closing.
)
)
Expand Down Expand Up @@ -155,7 +155,7 @@ $(LI $(LNAME2 slice_ptr, `ptr` property and public constructor were added to
soon as LDC (LLVM D compiler) supports D version 2.072..
)
$(P Public constructor for `Slice` was added to support
$(STDMODREF ndslice, std.experimental.ndslice) integration
$(MREF std,experimental,ndslice) integration
with other languages and libraries such as Julia language and NumPy library.
)
)
Expand All @@ -168,7 +168,7 @@ $(LI $(LNAME2 slice_alloc, `slice`, `shape`, `ndarray`, and other utilities
$(REF makeSlice, std,experimental,ndslice,slice),
$(REF ndarray, std,experimental,ndslice,slice), and
$(REF makeNdarray, std,experimental,ndslice,slice)
allocation utilities were added to $(STDMODREF ndslice.slice, std.experimental.ndslice)
allocation utilities were added to $(MREF std,experimental,ndslice)
)
$(P Example: Transposing common 2D array using `ndslice`)
-----
Expand Down Expand Up @@ -251,12 +251,4 @@ Macros:
RELATIVE_LINK2=<a href="#$1">$+</a>
LNAME2=<a class="anchor" title="Permalink to this section" id="$1" href="#$1">$+</a>

STDMODREF = <a href="phobos/std_$1.html">$2</a>
XREF = <a href="phobos/std_$1.html#$2">$2</a>
CXREF = <a href="phobos/core_$1.html#$2">$2</a>
OXREF = <a href="phobos/object.html#$2">$2</a>
NXREF = <a href="phobos/std_$1.html#.$2">$2</a>
NCXREF = <a href="phobos/core_$1.html#.$2">$2</a>
NOXREF = <a href="phobos/object.html#.$2">$2</a>

BOOKTABLE = <table><caption>$1</caption>$+</table>
4 changes: 2 additions & 2 deletions std/concurrency.d
Original file line number Diff line number Diff line change
Expand Up @@ -825,11 +825,11 @@ unittest

/**
* Tries to receive but will give up if no matches arrive within duration.
* Won't wait at all if provided $(CXREF time, Duration) is negative.
* Won't wait at all if provided $(REF Duration, core,time) is negative.
*
* Same as $(D receive) except that rather than wait forever for a message,
* it waits until either it receives a message or the given
* $(CXREF time, Duration) has passed. It returns $(D true) if it received a
* $(REF Duration, core,time) has passed. It returns $(D true) if it received a
* message and $(D false) if it timed out waiting for one.
*/
bool receiveTimeout(T...)( Duration duration, T ops )
Expand Down
Loading