From 22ba82bcb08c454dc6227ab83128d12e8e6d6a8f Mon Sep 17 00:00:00 2001 From: AtharvSharmaAI Date: Wed, 3 Dec 2025 23:23:44 +0530 Subject: [PATCH] docs: fix incorrect example output in csrot dtype declarations --- 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/base/wasm/csrot/docs/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/blas/base/wasm/csrot/docs/types/index.d.ts b/lib/node_modules/@stdlib/blas/base/wasm/csrot/docs/types/index.d.ts index c726a965d1a4..11fc65f68c86 100644 --- a/lib/node_modules/@stdlib/blas/base/wasm/csrot/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/blas/base/wasm/csrot/docs/types/index.d.ts @@ -434,10 +434,10 @@ interface Routine extends ModuleWrapper { * mod.read( cyptr, viewY ); * * console.log( reinterpretComplex64( viewY, 0 ) ); - * // => [ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8, ~-5.4, -6 ] + * // => [ ~-0.6, ~-1.2, ~-1.8, ~-2.4, -3.0, ~-3.6, ~-4.2, ~-4.8, ~-5.4, -6.0 ] * * console.log( reinterpretComplex64( viewX, 0 ) ); - * // => [ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4, ~7.2, 8 ] + * // => [ ~0.8, ~1.6, ~2.4, ~3.2, 4.0, ~4.8, ~5.6, ~6.4, ~7.2, 8.0 ] */ Module: ModuleConstructor; }