Skip to content

Commit fda8f6e

Browse files
committed
Add missing backticks
1 parent c9e5b7d commit fda8f6e

File tree

7 files changed

+7
-7
lines changed
  • lib/node_modules/@stdlib/assert
    • is-negative-integer-array/docs/types
    • is-nonnegative-integer-array/docs/types
    • is-nonnegative-number-array/docs/types
    • is-positive-integer-array/docs/types
    • is-positive-number-array/docs/types
    • is-probability-array/docs/types
    • is-symbol-array/docs/types

7 files changed

+7
-7
lines changed

lib/node_modules/@stdlib/assert/is-negative-integer-array/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isNegativeIntegerArray = require( './index' );
5454
isNegativeIntegerArray.objects( [ -2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isNegativeIntegerArray.objects(); // $ExpectError
6060
isNegativeIntegerArray.objects( [ -2 ], 123 ); // $ExpectError

lib/node_modules/@stdlib/assert/is-nonnegative-integer-array/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isNonNegativeIntegerArray = require( './index' );
5454
isNonNegativeIntegerArray.objects( [ 2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isNonNegativeIntegerArray.objects(); // $ExpectError
6060
isNonNegativeIntegerArray.objects( [ 2 ], 123 ); // $ExpectError

lib/node_modules/@stdlib/assert/is-nonnegative-number-array/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isNonNegativeNumberArray = require( './index' );
5454
isNonNegativeNumberArray.objects( [ 2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isNonNegativeNumberArray.objects(); // $ExpectError
6060
isNonNegativeNumberArray.objects( [ 2 ], 123 ); // $ExpectError

lib/node_modules/@stdlib/assert/is-positive-integer-array/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isPositiveIntegerArray = require( './index' );
5454
isPositiveIntegerArray.objects( [ 2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isPositiveIntegerArray.objects(); // $ExpectError
6060
isPositiveIntegerArray.objects( [ 2 ], 123 ); // $ExpectError

lib/node_modules/@stdlib/assert/is-positive-number-array/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isPositiveNumberArray = require( './index' );
5454
isPositiveNumberArray.objects( [ 2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isPositiveNumberArray.objects(); // $ExpectError
6060
isPositiveNumberArray.objects( [ 2 ], 123 ); // $ExpectError

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isProbabilityArray = require( './index' );
5454
isProbabilityArray.objects( [ 0.2 ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isProbabilityArray.objects(); // $ExpectError
6060
isProbabilityArray.objects( [ 0.2 ], 123 ); // $ExpectError

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ import isSymbolArray = require( './index' );
5454
isSymbolArray.objects( [ Symbol( 'abc' ) ] ); // $ExpectType boolean
5555
}
5656

57-
// The compiler throws an error if the `objects method is provided an unsupported number of arguments...
57+
// The compiler throws an error if the `objects` method is provided an unsupported number of arguments...
5858
{
5959
isSymbolArray.objects(); // $ExpectError
6060
isSymbolArray.objects( [ Symbol( 'abc' ) ], 123 ); // $ExpectError

0 commit comments

Comments
 (0)