From 8bb9272845886bfa2d289e1034f61e16fb8ed023 Mon Sep 17 00:00:00 2001 From: Philipp Burckhardt Date: Tue, 2 Jun 2026 11:29:52 -0500 Subject: [PATCH] docs: rename `value` parameter in `@stdlib/assert/is-prng-like` declaration Rename the `value` parameter from `v` to `value` in both the `@param` tag and the function signature, matching the parameter-naming convention used across the `@stdlib/assert` predicate 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_pkg_readmes status: na - task: lint_markdown_docs status: na - 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/assert/is-prng-like/docs/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/node_modules/@stdlib/assert/is-prng-like/docs/types/index.d.ts b/lib/node_modules/@stdlib/assert/is-prng-like/docs/types/index.d.ts index ccd777eb39ba..c5f45d2523c8 100644 --- a/lib/node_modules/@stdlib/assert/is-prng-like/docs/types/index.d.ts +++ b/lib/node_modules/@stdlib/assert/is-prng-like/docs/types/index.d.ts @@ -21,7 +21,7 @@ /** * Tests if a value is PRNG-like. * -* @param v - value to test +* @param value - value to test * @returns boolean indicating if a value is PRNG-like * * @example @@ -33,7 +33,7 @@ * bool = isPRNGLike( [] ); * // returns false */ -declare function isPRNGLike( v: any ): boolean; +declare function isPRNGLike( value: any ): boolean; // EXPORTS //