Skip to content

Commit 34316f6

Browse files
committed
Fix copy-paste errors
1 parent cceea72 commit 34316f6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

lib/node_modules/@stdlib/assert/is-alphagram/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
*
2424
* ## Notes
2525
*
26-
* - The function first checks that an input value is a string before validating that the value is an alphagram. For non-string values, the function returns `false`.
26+
* - The function first checks that an input value is a string before validating that the value is an alphagram. For non-string values, the function returns `false`.
2727
*
28-
* @param x - value to test
28+
* @param value - value to test
2929
* @returns boolean indicating if a value is an alphagram
3030
*
3131
* @example

lib/node_modules/@stdlib/assert/is-alphanumeric/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/**
2222
* Tests whether a string contains only alphanumeric characters.
2323
*
24-
* @param x - value to test
24+
* @param value - value to test
2525
* @returns boolean indicating if a string contains only alphanumeric characters
2626
*
2727
* @example

lib/node_modules/@stdlib/assert/is-anagram/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import isAnagram = require( './index' );
2727
isAnagram( 'bat', 'tabba' ); // $ExpectType boolean
2828
}
2929

30-
// The compiler throws an error if the returned accumulator function is provided invalid arguments...
30+
// The compiler throws an error if the function is provided an invalid first argument...
3131
{
3232
isAnagram( 5, 'a' ); // $ExpectError
3333
isAnagram( true, 'a' ); // $ExpectError

0 commit comments

Comments
 (0)