Skip to content

Commit 8933df2

Browse files
committed
Fix errors
1 parent 0d41d3d commit 8933df2

7 files changed

Lines changed: 7 additions & 8 deletions

File tree

lib/node_modules/@stdlib/datasets/berndt-cps-wages-1985/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
* Data for individual worker.
2323
*/
2424
type Observation = {
25-
/*
25+
/**
2626
* Number of years of education.
2727
*/
2828
education: number;
2929

30-
/*
30+
/**
3131
* Indicator variable for southern region (`1` if a person lives in the South; `0` if a person does not live in the South).
3232
*/
3333
south: number;

lib/node_modules/@stdlib/datasets/berndt-cps-wages-1985/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import dataset = require( './index' );
2323

2424
// The function returns an array of observations...
2525
{
26-
dataset(); // $ExpectType Observation[][]
26+
dataset(); // $ExpectType Observation[]
2727
}
2828

2929
// The compiler throws an error if the function is provided arguments...

lib/node_modules/@stdlib/datasets/savoy-stopwords-ger/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
import stopwords = require( '@stdlib/datasets/savoy-stopwords-ger/docs/types' );
19+
import stopwords = require( './index' );
2020

2121

2222
// TESTS //

lib/node_modules/@stdlib/datasets/savoy-stopwords-it/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
import stopwords = require( '@stdlib/datasets/savoy-stopwords-it/docs/types' );
19+
import stopwords = require( './index' );
2020

2121

2222
// TESTS //

lib/node_modules/@stdlib/datasets/savoy-stopwords-swe/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
import stopwords = require( '@stdlib/datasets/savoy-stopwords-swe/docs/types' );
19+
import stopwords = require( './index' );
2020

2121

2222
// TESTS //

lib/node_modules/@stdlib/datasets/us-states-names-capitals/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"test": "./test"
2929
},
3030
"types": "./docs/types",
31-
"types": "./docs/types",
3231
"scripts": {},
3332
"homepage": "https://github.com/stdlib-js/stdlib",
3433
"repository": {

lib/node_modules/@stdlib/fs/open/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import { Buffer } from 'buffer';
2424

2525
/**
26-
* Callback invoked after after opening a file.
26+
* Callback invoked after opening a file.
2727
*
2828
* @param err - error argument
2929
* @param fd - file descriptor

0 commit comments

Comments
 (0)