Skip to content

Commit 791a5dd

Browse files
committed
Minimize usage of backticks
1 parent adea896 commit 791a5dd

35 files changed

Lines changed: 100 additions & 100 deletions

File tree

lib/node_modules/@stdlib/assert/is-arguments/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is an `arguments` object.
3+
Tests if a value is an arguments object.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating whether value is an `arguments` object.
13+
Boolean indicating whether value is an arguments object.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/assert/is-array-length/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
{{alias}}( value )
33
Tests if a value is a valid array length.
44

5-
A valid `length` property for an `Array` is any integer value on the
6-
interval `[0, 2^32-1]`.
5+
A valid length property for an Array instance is any integer value on the
6+
interval [0, 2^32-1].
77

88
Parameters
99
----------

lib/node_modules/@stdlib/assert/is-array-like-object/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{alias}}( value )
33
Tests if a value is an array-like object.
44

5-
If provided a `string`, the function returns `false`.
5+
If provided a string, the function returns `false`.
66

77
Parameters
88
----------

lib/node_modules/@stdlib/assert/is-array-like/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{{alias}}( value )
33
Tests if a value is array-like.
44

5-
If provided a `string`, the function returns `true`.
5+
If provided a string, the function returns `true`.
66

77
Parameters
88
----------

lib/node_modules/@stdlib/assert/is-arraybuffer/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is an `ArrayBuffer`.
3+
Tests if a value is an ArrayBuffer.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating whether value is an `ArrayBuffer`.
13+
Boolean indicating whether value is an ArrayBuffer.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/assert/is-buffer/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is a `Buffer` instance.
3+
Tests if a value is a Buffer instance.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating whether value is a `Buffer` instance.
13+
Boolean indicating whether value is a Buffer instance.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/assert/is-date-object-array/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is an array-like object containing only `Date` objects.
3+
Tests if a value is an array-like object containing only Date objects.
44

55
Parameters
66
----------
@@ -10,8 +10,8 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating if value is an array-like object containing only
14-
`Date` objects.
13+
Boolean indicating if value is an array-like object containing only Date
14+
objects.
1515

1616
Examples
1717
--------

lib/node_modules/@stdlib/assert/is-date-object/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is a `Date` object.
3+
Tests if a value is a Date object.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating whether value is a `Date` object.
13+
Boolean indicating whether value is a Date object.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/assert/is-error/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( value )
3-
Tests if a value is an `Error` object.
3+
Tests if a value is an Error object.
44

55
Parameters
66
----------
@@ -10,7 +10,7 @@
1010
Returns
1111
-------
1212
bool: boolean
13-
Boolean indicating whether value is an `Error` object.
13+
Boolean indicating whether value is an Error object.
1414

1515
Examples
1616
--------

lib/node_modules/@stdlib/assert/is-eval-error/docs/repl.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
{{alias}}( value )
3-
Tests if a value is an `EvalError` object.
3+
Tests if a value is an EvalError object.
44

55
This function should *not* be considered robust. While the function should
6-
always return `true` if provided an `EvalError` (or a descendant) object,
7-
false positives may occur due to the fact that the `EvalError` constructor
8-
inherits from `Error` and has no internal class of its own. Hence,
9-
`EvalError` impersonation is possible.
6+
always return `true` if provided an EvalError (or a descendant) object,
7+
false positives may occur due to the fact that the EvalError constructor
8+
inherits from Error and has no internal class of its own. Hence, EvalError
9+
impersonation is possible.
1010

1111
Parameters
1212
----------
@@ -16,7 +16,7 @@
1616
Returns
1717
-------
1818
bool: boolean
19-
Boolean indicating whether value is an `EvalError` object.
19+
Boolean indicating whether value is an EvalError object.
2020

2121
Examples
2222
--------

0 commit comments

Comments
 (0)