Skip to content

Commit dd6d9cf

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: passed - 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: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: passed - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 202df24 commit dd6d9cf

File tree

7 files changed

+7
-8
lines changed

7 files changed

+7
-8
lines changed

lib/node_modules/@stdlib/complex/float32/base/mul/include/stdlib/complex/float32/base/mul.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
#endif
3030

3131
/**
32-
* Multiples two single-precision complex floating-point numbers.
32+
* Multiplies two single-precision complex floating-point numbers.
3333
*/
3434
stdlib_complex64_t stdlib_base_complex64_mul( const stdlib_complex64_t z1, const stdlib_complex64_t z2 );
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ Rounds each component of a double-precision complex floating-point number to the
175175
176176
stdlib_complex128_t z = stdlib_complex128( -3.141592653589793, 3.141592653589793 );
177177
178-
stdlib_complex128_t out = stdlib_base_croundn( z );
178+
stdlib_complex128_t out = stdlib_base_croundn( z, -2 );
179179
180180
double re = stdlib_complex128_real( out );
181181
// returns -3.14

lib/node_modules/@stdlib/math/base/special/minabs/include/stdlib/math/base/special/minabs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ extern "C" {
2727
#endif
2828

2929
/**
30-
* Returns the absolute minimum value.
30+
* Returns the minimum absolute value.
3131
*/
3232
double stdlib_base_minabs( const double x, const double y );
3333

lib/node_modules/@stdlib/math/base/special/minabsn/benchmark/c/benchmark.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
#include <time.h>
2323
#include <sys/time.h>
2424

25-
#define NAME "minabs"
25+
#define NAME "minabsn"
2626
#define ITERATIONS 1000000
2727
#define REPEATS 3
2828

lib/node_modules/@stdlib/math/base/special/nonfibonacci/include/stdlib/math/base/special/nonfibonacci.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@
2525
* If C++, prevent name mangling so that the compiler emits a binary file having undecorated names, thus mirroring the behavior of a C compiler.
2626
*/
2727
#ifdef __cplusplus
28-
extern "C"
29-
{
28+
extern "C" {
3029
#endif
3130

3231
/**

lib/node_modules/@stdlib/math/base/special/nonfibonaccif/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{alias}}( n )
33
Computes the nth non-Fibonacci single-precision floating-point number.
44

5-
If not provided a nonnegative integer value, the function returns `NaN`.
5+
If provided either a non-integer or `n < 1`, the function returns `NaN`.
66

77
If provided `NaN`, the function returns `NaN`.
88

lib/node_modules/@stdlib/math/base/special/nonfibonaccif/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* ## Notes
2525
*
26-
* - If not provided a nonnegative integer value, the function returns `NaN`.
26+
* - If provided either a non-integer or `n < 1`, the function returns `NaN`.
2727
*
2828
* @param n - the non-Fibonacci number to compute
2929
* @returns non-Fibonacci number

0 commit comments

Comments
 (0)