Skip to content

Commit aad48ea

Browse files
committed
chore: resolve lint errors
1 parent 5a50038 commit aad48ea

File tree

8 files changed

+3
-8
lines changed

8 files changed

+3
-8
lines changed

lib/node_modules/@stdlib/array/base/cuany-by-right/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ function isPositive( value: number ): boolean {
7272
cuanyByRight( x, [], {} ); // $ExpectError
7373
cuanyByRight( x, '', {} ); // $ExpectError
7474
cuanyByRight( x, undefined, {} ); // $ExpectError
75-
7675
}
7776

7877
// The compiler throws an error if the function is provided an unsupported number of arguments...

lib/node_modules/@stdlib/array/base/cuany-by/docs/types/test.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ function isPositive( value: number ): boolean {
7171
cuanyBy( x, [], {} ); // $ExpectError
7272
cuanyBy( x, '', {} ); // $ExpectError
7373
cuanyBy( x, undefined, {} ); // $ExpectError
74-
7574
}
7675

7776
// The compiler throws an error if the function is provided an unsupported number of arguments...

lib/node_modules/@stdlib/array/base/cuevery-by/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ interface CuEveryBy {
162162
* // returns [ true, null, true, null, false, null, false, null, false, null ];
163163
*/
164164
assign<T = unknown, U = unknown, V = unknown>( x: Collection<T> | AccessorArrayLike<T>, out: Collection<U> | AccessorArrayLike<U>, stride: number, offset: number, predicate: Predicate<T, V>, thisArg?: ThisParameterType<Predicate<T, V>> ): Collection<U | boolean> | AccessorArrayLike<U | boolean>;
165-
166165
}
167166

168167
/**

lib/node_modules/@stdlib/array/base/cunone-by-right/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"keywords": [
5252
"stdlib",
5353
"stdtypes",
54-
"utlis",
54+
"utils",
5555
"generic",
5656
"array",
5757
"cumulative",

lib/node_modules/@stdlib/array/base/cusome-by-right/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"keywords": [
5252
"stdlib",
5353
"stdtypes",
54-
"utlis",
54+
"utils",
5555
"generic",
5656
"array",
5757
"cumulative",

lib/node_modules/@stdlib/array/from-iterator/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
/// <reference types="@stdlib/types"/>
2222

23-
import { TypedIterator as Iter } from '@stdlib/types/iter';
23+
import { TypedIterator as Iter, TypedIterableIterator as IterableIterator } from '@stdlib/types/iter';
2424
import { Collection } from '@stdlib/types/array';
2525

2626
// Define a union type representing both iterable and non-iterable iterators:

lib/node_modules/@stdlib/blas/base/dsyr/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ interface Routine {
5353
/**
5454
* Performs the matrix-vector operation `y = alpha*A*x + beta*y` using alternative indexing semantics and where `alpha` and `beta` are scalars, `x` and `y` are `N` element vectors, and `A` is an `N` by `N` symmetric matrix.
5555
*
56-
* @param order - storage layout
5756
* @param uplo - specifies whether the upper or lower triangular part of the symmetric matrix `A` should be referenced
5857
* @param N - number of elements along each dimension in the matrix `A`
5958
* @param alpha - scalar constant

lib/node_modules/@stdlib/random/array/tools/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ interface Namespace {
115115
* // returns <Float64Array>
116116
*/
117117
unary: typeof unary;
118-
119118
}
120119

121120
/**

0 commit comments

Comments
 (0)