Skip to content

Commit 88fb67b

Browse files
feat(add float32/ln-ten): add float32/ln-ten
1 parent 574cfbf commit 88fb67b

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/constants/float32/ln-ten/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 `10`.
3+
Natural logarithm of `10` as a single-precision floating-point number.
44

55
Examples
66
--------

lib/node_modules/@stdlib/constants/float32/ln-ten/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 `10`.
22+
* Natural logarithm of `10` as a single-precision floating-point number.
2323
*
2424
* @example
2525
* var val = FLOAT32_LN10;

lib/node_modules/@stdlib/constants/float32/ln-ten/include/stdlib/constants/float32/ln_ten.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_TEN_H
2121

2222
/**
23-
* Macro for the natural logarithm of single-precision floating-point number 10.
23+
* Macro for the natural logarithm of `10` as a single-precision floating-point number.
2424
*/
2525
#define STDLIB_CONSTANT_FLOAT32_LN10 2.3025851249694824f
2626

lib/node_modules/@stdlib/constants/float32/ln-ten/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 `10`.
22+
* Natural logarithm of `10` as a single-precision floating-point number.
2323
*
2424
* @module @stdlib/constants/float32/ln-ten
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 `10`.
40+
* Natural logarithm of `10` as a single-precision floating-point number.
4141
*
4242
* ```tex
4343
* \ln 10

lib/node_modules/@stdlib/constants/float32/ln-ten/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-ten",
33
"version": "0.0.0",
4-
"description": "Natural logarithm of single-precision floating-point number 10.",
4+
"description": "Natural logarithm of `10` as a single-precision floating-point number.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

0 commit comments

Comments
 (0)