Convert section labels to title case

This commit is contained in:
Andrei Alexandrescu 2017-07-12 15:19:57 -04:00
parent 232380647b
commit 1a08d2a8d6
4 changed files with 15 additions and 15 deletions

View file

@ -5290,9 +5290,9 @@ private:
/*********************************
* Determines if $(D_PARAM x) is NaN.
* params:
* Params:
* x = a floating point number.
* returns:
* Returns:
* $(D true) if $(D_PARAM x) is Nan.
*/
bool isNaN(X)(X x) @nogc @trusted pure nothrow
@ -5378,9 +5378,9 @@ if (isFloatingPoint!(X))
/*********************************
* Determines if $(D_PARAM x) is finite.
* params:
* Params:
* x = a floating point number.
* returns:
* Returns:
* $(D true) if $(D_PARAM x) is finite.
*/
bool isFinite(X)(X x) @trusted pure nothrow @nogc
@ -5421,9 +5421,9 @@ bool isFinite(X)(X x) @trusted pure nothrow @nogc
*
* A normalized number must not be zero, subnormal, infinite nor $(NAN).
*
* params:
* Params:
* x = a floating point number.
* returns:
* Returns:
* $(D true) if $(D_PARAM x) is normalized.
*/
@ -5471,9 +5471,9 @@ bool isNormal(X)(X x) @trusted pure nothrow @nogc
* Subnormals (also known as "denormal number"), have a 0 exponent
* and a 0 most significant mantissa bit.
*
* params:
* Params:
* x = a floating point number.
* returns:
* Returns:
* $(D true) if $(D_PARAM x) is a denormal number.
*/
bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
@ -5533,9 +5533,9 @@ bool isSubnormal(X)(X x) @trusted pure nothrow @nogc
/*********************************
* Determines if $(D_PARAM x) is $(PLUSMN)$(INFIN).
* params:
* Params:
* x = a floating point number.
* returns:
* Returns:
* $(D true) if $(D_PARAM x) is $(PLUSMN)$(INFIN).
*/
bool isInfinity(X)(X x) @nogc @trusted pure nothrow