Skip to content

Commit 0240ed9

Browse files
committed
chore: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 84c97ba commit 0240ed9

File tree

18 files changed

+26
-28
lines changed

18 files changed

+26
-28
lines changed

lib/node_modules/@stdlib/math/base/assert/is-nonpositive-integer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isNonPositiveInteger = require( '@stdlib/math/base/assert/is-nonpositive-int
3232

3333
#### isNonPositiveInteger( x )
3434

35-
Tests if a finite [double-precision floating-point number][ieee754] is a nonpositive `integer`.
35+
Tests if a finite [double-precision floating-point number][ieee754] is a nonpositive integer.
3636

3737
```javascript
3838
var bool = isNonPositiveInteger( -1.0 );

lib/node_modules/@stdlib/math/base/assert/is-positive-integer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isPositiveInteger = require( '@stdlib/math/base/assert/is-positive-integer'
3232

3333
#### isPositiveInteger( x )
3434

35-
Tests if a finite [double-precision floating-point number][ieee754] is a positive `integer`.
35+
Tests if a finite [double-precision floating-point number][ieee754] is a positive integer.
3636

3737
```javascript
3838
var bool = isPositiveInteger( 1.0 );

lib/node_modules/@stdlib/math/base/assert/is-safe-integer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ var isSafeInteger = require( '@stdlib/math/base/assert/is-safe-integer' );
3232

3333
#### isSafeInteger( x )
3434

35-
Tests if a finite [double-precision floating-point number][ieee754] is a safe `integer`.
35+
Tests if a finite [double-precision floating-point number][ieee754] is a safe integer.
3636

3737
```javascript
3838
var bool = isSafeInteger( 1.0 );

lib/node_modules/@stdlib/math/base/special/cbrtf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ float stdlib_base_cbrtf( const float x );
147147
#include <stdio.h>
148148
149149
int main( void ) {
150-
const float x[] = { 3.14f, 9.00f, 0.0f, 0.0f/0.0f };
150+
const float x[] = { 3.14f, 9.0f, 0.0f, 0.0f/0.0f };
151151
152152
float y;
153153
int i;

lib/node_modules/@stdlib/math/base/special/ceilsd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ logEachMap( 'x: %0.4f. y: %d. z: %d. Rounded: %0.4f.', x, 5, 10, ceilsd );
109109

110110
#### stdlib_base_ceilsd( x, n, b )
111111

112-
Rounds a `numeric` value to the nearest `number` toward negative infinity with `n` significant figures.
112+
Rounds a `numeric` value to the nearest `number` toward positive infinity with `n` significant figures.
113113

114114
```c
115115
double out = stdlib_base_ceilsd( 0.0313, 2, 2 );

lib/node_modules/@stdlib/math/base/special/cfloorn/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,9 @@ im = imag( v );
120120

121121
```javascript
122122
var Complex128 = require( '@stdlib/complex/float64/ctor' );
123-
var randu = require( '@stdlib/random/base/randu' );
124123
var uniform = require( '@stdlib/random/base/uniform' );
125-
var floor = require( '@stdlib/math/base/special/floor' );
126-
var cfloorn = require( '@stdlib/math/base/special/cfloorn' );
127124
var randint = require( '@stdlib/random/base/discrete-uniform' );
125+
var cfloorn = require( '@stdlib/math/base/special/cfloorn' );
128126
129127
var z;
130128
var w;

lib/node_modules/@stdlib/math/base/special/clampf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ int main( void ) {
187187
int i;
188188
for ( i = 0; i < 4; i++ ) {
189189
y = stdlib_base_clampf( x[ i ], -3.0f, 3.0f );
190-
printf( "clamp(%f, %f, %f) = %f\n", x[ i ], -3.0f, 3.0f, y );
190+
printf( "clampf(%f, %f, %f) = %f\n", x[ i ], -3.0f, 3.0f, y );
191191
}
192192
}
193193
```

lib/node_modules/@stdlib/math/base/special/copysign/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Returns a [double-precision floating-point number][ieee754] with the magnitude o
124124
double v = stdlib_base_copysign( -3.14, 10.0 );
125125
// returns 3.14
126126

127-
double v = stdlib_base_copysign( 3.14, -1.0 );
127+
v = stdlib_base_copysign( 3.14, -1.0 );
128128
// returns -3.14
129129
```
130130

lib/node_modules/@stdlib/math/base/special/cphasef/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var cphasef = require( '@stdlib/math/base/special/cphasef' );
6868
// Create an array of random numbers:
6969
var arr = new Complex64Array( uniform( 200, -100.0, 100.0 ) );
7070

71-
// Compute the inverse of each number in the array:
71+
// Compute the argument of each number in the array:
7272
logEachMap( 'cphasef(%s) = %0.4f', arr, cphasef );
7373
```
7474

lib/node_modules/@stdlib/math/base/special/ellipk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ out = stdlib_base_ellipk( -1.0 );
154154

155155
The function accepts the following arguments:
156156

157-
- **x**: `[in] double` input value.
157+
- **m**: `[in] double` input value.
158158

159159
```c
160160
double stdlib_base_ellipk( const double m );

0 commit comments

Comments
 (0)