From 53d181b5581a10bee3ebe924a54f137544d309e4 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 10 Dec 2025 22:20:57 -0600 Subject: [PATCH 1/2] 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: passed - 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: na - 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 --- --- lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js | 2 +- .../@stdlib/ndarray/base/to-flippedlr/docs/repl.txt | 2 +- lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js index d35ae059c9e0..c32a85c5ad19 100644 --- a/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js +++ b/lib/node_modules/@stdlib/constants/float16/max-ln/test/test.js @@ -36,7 +36,7 @@ tape( 'main export is a number', function test( t ) { t.end(); }); -tape( 'export is a single-precision floating-point number equal to the natural logarithm of the max single-precision floating-point number', function test( t ) { +tape( 'export is a half-precision floating-point number equal to the natural logarithm of the max half-precision floating-point number', function test( t ) { t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( pow( 2, 15 ) * ( 2 - pow( 2, -10 ) ) ) ), 'returns expected value' ); t.strictEqual( FLOAT16_MAX_LN, float64ToFloat16( ln( FLOAT16_MAX ) ), 'returns expected value' ); t.end(); diff --git a/lib/node_modules/@stdlib/ndarray/base/to-flippedlr/docs/repl.txt b/lib/node_modules/@stdlib/ndarray/base/to-flippedlr/docs/repl.txt index f5ea4bbd2cb3..4d067bcc90d7 100644 --- a/lib/node_modules/@stdlib/ndarray/base/to-flippedlr/docs/repl.txt +++ b/lib/node_modules/@stdlib/ndarray/base/to-flippedlr/docs/repl.txt @@ -1,7 +1,7 @@ {{alias}}( x ) Returns a new ndarray where the order of elements along the last dimension - of an input ndarray is reversed along each dimension. + of an input ndarray is reversed. Parameters ---------- diff --git a/lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md b/lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md index ef4fdc041f2b..c7400dfffdd5 100644 --- a/lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md +++ b/lib/node_modules/@stdlib/ndarray/base/to-flippedud/README.md @@ -86,7 +86,7 @@ The function accepts the following arguments: ## Notes -- If provided a zero-dimensional ndarray, as the ndarray has no dimensions to reverse, the function simply returns a copy the input ndarray. Similarly, if provided a one-dimensional ndarray, as the ndarray has only one dimension, the function simply returns a copy of the input ndarray. +- If provided a zero-dimensional ndarray, as the ndarray has no dimensions to reverse, the function simply returns a copy of the input ndarray. Similarly, if provided a one-dimensional ndarray, as the ndarray has only one dimension, the function simply returns a copy of the input ndarray. From 4304beea7033322ecdb6f41d7f08d94e105e0d2a Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Wed, 10 Dec 2025 22:29:41 -0600 Subject: [PATCH 2/2] test: fix description --- 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: na - 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: na - 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: passed - task: lint_typescript_tests status: passed - task: lint_license_headers status: passed --- --- .../@stdlib/blas/ext/base/ndarray/gjoin/docs/types/test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types/test.ts b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types/test.ts index 3020843a6a21..075a65a093f1 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types/test.ts +++ b/lib/node_modules/@stdlib/blas/ext/base/ndarray/gjoin/docs/types/test.ts @@ -25,7 +25,7 @@ import gjoin = require( './index' ); // TESTS // -// The function returns a number... +// The function returns a string... { const x = zeros( [ 10 ], { 'dtype': 'generic'