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 //