Skip to content

Commit 39c91a8

Browse files
feat(constants): add float32 ln-half constant
1 parent 94114b7 commit 39c91a8

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

lib/node_modules/@stdlib/constants/float32/ln-half/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# FLOAT32_LN_HALF
2222

23-
> [Natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`.
23+
> [Natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number.
2424
2525
<section class="usage">
2626

@@ -32,7 +32,7 @@ var FLOAT32_LN_HALF = require( '@stdlib/constants/float32/ln-half' );
3232

3333
#### FLOAT32_LN_HALF
3434

35-
[Natural logarithm][@stdlib/math/base/special/ln] of `1/2`.
35+
[Natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number.
3636

3737
```javascript
3838
var bool = ( FLOAT32_LN_HALF === -0.6931471824645996 );
@@ -90,7 +90,7 @@ console.log( FLOAT32_LN_HALF );
9090

9191
#### STDLIB_CONSTANT_FLOAT32_LN_HALF
9292

93-
Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precision floating-point number `1/2`.
93+
Macro for the [natural logarithm][@stdlib/math/base/special/lnf] of `1/2` as a single-precision floating-point number.
9494

9595
</section>
9696

@@ -128,7 +128,7 @@ Macro for the [natural logarithm][@stdlib/math/base/special/ln] of single-precis
128128

129129
<section class="links">
130130

131-
[@stdlib/math/base/special/ln]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/ln
131+
[@stdlib/math/base/special/lnf]: https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/math/base/special/ln
132132

133133
</section>
134134

lib/node_modules/@stdlib/constants/float32/ln-half/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}
3-
Natural logarithm of single-precision floating-point number `1/2`.
3+
Natural logarithm of `1/2` as a single-precision floating-point number.
44

55
Examples
66
--------

lib/node_modules/@stdlib/constants/float32/ln-half/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Natural logarithm of single-precision floating-point number `1/2`.
22+
* Natural logarithm of `1/2` as a single-precision floating-point number.
2323
*
2424
* @example
2525
* var val = FLOAT32_LN_HALF;

lib/node_modules/@stdlib/constants/float32/ln-half/include/stdlib/constants/float32/ln_half.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define STDLIB_CONSTANTS_FLOAT32_LN_HALF_H
2121

2222
/**
23-
* Macro for the natural logarithm of single-precision floating-point number 1/2.
23+
* Macro for the natural logarithm of 1/2 as a single-precision floating-point number.
2424
*/
2525
#define STDLIB_CONSTANT_FLOAT32_LN_HALF -0.6931471824645996f
2626

lib/node_modules/@stdlib/constants/float32/ln-half/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Natural logarithm of single-precision floating-point number `1/2`.
22+
* Natural logarithm of `1/2` as a single-precision floating-point number.
2323
*
2424
* @module @stdlib/constants/float32/ln-half
2525
* @type {number}
@@ -37,7 +37,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
3737
// MAIN //
3838

3939
/**
40-
* Natural logarithm of single-precision floating-point number `1/2`.
40+
* Natural logarithm of `1/2` as a single-precision floating-point number.
4141
*
4242
* ```tex
4343
* \ln (1/2)

lib/node_modules/@stdlib/constants/float32/ln-half/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/constants/float32/ln-half",
33
"version": "0.0.0",
4-
"description": "Natural logarithm of single-precision floating-point number 1/2.",
4+
"description": "Natural logarithm of 1/2 as a single-precision floating-point number",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)