Skip to content

Commit 121473a

Browse files
committed
Auto-generated commit
1 parent 96fd515 commit 121473a

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ A total of 20 issues were closed in this release:
158158

159159
<details>
160160

161+
- [`8879b1d`](https://github.com/stdlib-js/stdlib/commit/8879b1d32513bce3f1cc083787d3ca504f7673a4) - **docs:** tidy doc and C macro drift in `@stdlib/constants/float32` [(#12432)](https://github.com/stdlib-js/stdlib/pull/12432) _(by Philipp Burckhardt)_
161162
- [`9dd3df6`](https://github.com/stdlib-js/stdlib/commit/9dd3df6b9e0735d6ffe28d6475e1181ac645f2de) - **docs:** update namespace table of contents [(#12416)](https://github.com/stdlib-js/stdlib/pull/12416) _(by stdlib-bot)_
162163
- [`313aca0`](https://github.com/stdlib-js/stdlib/commit/313aca0ca68e3b4aa57e9b1147e7245799c08f3a) - **docs:** tidy JSDoc and README drift in `@stdlib/constants` [(#12389)](https://github.com/stdlib-js/stdlib/pull/12389) _(by Philipp Burckhardt)_
163164
- [`0955e33`](https://github.com/stdlib-js/stdlib/commit/0955e33c604c44b355a19de7bfce761869922d96) - **style:** add missing section comments [(#12158)](https://github.com/stdlib-js/stdlib/pull/12158) _(by Philipp Burckhardt)_

float32/half-ln-two/include/stdlib/constants/float32/half_ln_two.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
/**
2323
* Macro for one half times the natural logarithm of 2 as a single-precision floating-point number.
2424
*/
25-
#define STDLIB_CONSTANT_FLOAT32_HALF_LN_TWO 0.3465735912322998
25+
#define STDLIB_CONSTANT_FLOAT32_HALF_LN_TWO 0.3465735912322998f
2626

2727
#endif // !STDLIB_CONSTANTS_FLOAT32_HALF_LN_TWO_H

float32/log10-e/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
4343
* @type {number}
4444
* @default 0.4342944920063019
4545
* @see [OEIS]{@link https://oeis.org/A001113}
46-
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_%27mathematical_constant%28}
46+
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_(mathematical_constant)}
4747
*/
4848
var FLOAT32_LOG10E = float64ToFloat32( 0.4342944819032518 );
4949

float32/log2-e/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
4343
* @type {number}
4444
* @default 1.4426950216293335
4545
* @see [OEIS]{@link https://oeis.org/A001113}
46-
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_%27mathematical_constant%28}
46+
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_(mathematical_constant)}
4747
*/
4848
var FLOAT32_LOG2E = float64ToFloat32( 1.4426950408889634 );
4949

float32/nan/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ limitations under the License.
1818
1919
-->
2020

21-
# NAN
21+
# FLOAT32_NAN
2222

2323
> [Single-precision floating-point][ieee754] `NaN`.
2424

0 commit comments

Comments
 (0)