Skip to content

Commit cceea72

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

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/assert/is-ascii/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 character belongs to the ASCII character set and whether this is true for all characters in a provided string.
2323
*
24-
* @param x - value to test
24+
* @param value - value to test
2525
* @returns boolean indicating if a string has all ASCII characters
2626
*
2727
* @example

lib/node_modules/@stdlib/assert/is-binary-string/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 if a value is a binary string.
2323
*
24-
* @param str - value to test
24+
* @param value - value to test
2525
* @returns boolean indicating if an input value is a binary string
2626
*
2727
* @example

lib/node_modules/@stdlib/assert/is-digit-string/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 numeric digits.
2323
*
24-
* @param x - value to test
24+
* @param value - value to test
2525
* @returns boolean indicating if a string contains only numeric digits
2626
*
2727
* @example

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* - According to the Gregorian calendar, every year that is exactly divisible by `4` is a leap year, except those years which are also divisible by `100` and not by `400` (e.g., `1900`).
2727
*
28-
* @param [value] - input value
28+
* @param value - input value
2929
* @returns boolean whether a value corresponds to a leap year
3030
*
3131
* @example

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* ## Notes
2525
*
26-
* - This function should *not* be considered robust. While the function should always return `true` if provided a URIError (or a descendant) object, false positives may occur due to the fact that the URIError constructor inherits from Error and has no internal class of its own. Hence, URIError impersonation is possible.
26+
* - This function should **not** be considered robust. While the function should always return `true` if provided a SyntaxError (or a descendant) object, false positives may occur due to the fact that the SyntaxError constructor inherits from Error and has no internal class of its own. Hence, SyntaxError impersonation is possible.
2727
*
2828
* @param value - value to test
2929
* @returns boolean indicating whether a value is a `SyntaxError` object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* ## Notes
2525
*
26-
* - This function should *not* be considered robust. While the function should always return `true` if provided a URIError (or a descendant) object, false positives may occur due to the fact that the URIError constructor inherits from Error and has no internal class of its own. Hence, URIError impersonation is possible.
26+
* - This function should **not** be considered robust. While the function should always return `true` if provided a TypeError (or a descendant) object, false positives may occur due to the fact that the TypeError constructor inherits from Error and has no internal class of its own. Hence, TypeError impersonation is possible.
2727
*
2828
* @param value - value to test
2929
* @returns boolean indicating whether a value is a `TypeError` object

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
*
2424
* ## Notes
2525
*
26-
* - This function should *not* be considered robust. While the function should always return `true` if provided a URIError (or a descendant) object, false positives may occur due to the fact that the URIError constructor inherits from Error and has no internal class of its own. Hence, URIError impersonation is possible.
26+
* - This function should **not** be considered robust. While the function should always return `true` if provided a URIError (or a descendant) object, false positives may occur due to the fact that the URIError constructor inherits from Error and has no internal class of its own. Hence, URIError impersonation is possible.
2727
*
2828
* @param value - value to test
2929
* @returns boolean indicating whether a value is a `URIError` object

0 commit comments

Comments
 (0)