Skip to content

Commit 478ad61

Browse files
committed
Auto-generated commit
1 parent 564c06c commit 478ad61

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3526,6 +3526,7 @@ A total of 559 issues were closed in this release:
35263526

35273527
<details>
35283528

3529+
- [`038e74d`](https://github.com/stdlib-js/stdlib/commit/038e74da7817997d6de072cf614f32e930136fa9) - **docs:** revert back to using 'constructor' instead of 'function' _(by Philipp Burckhardt)_
35293530
- [`c216219`](https://github.com/stdlib-js/stdlib/commit/c2162190116f0953296c56c41b7480c8c050ab7e) - **docs:** fix JSDoc parameter type in `stats/base/ztest/one-sample/results` constructors _(by Philipp Burckhardt)_
35303531
- [`518e88e`](https://github.com/stdlib-js/stdlib/commit/518e88ef1c3de77e44a760fcabb1aa7ebd4ee72d) - **chore:** use literal since setter accepts strings directly _(by Philipp Burckhardt)_
35313532
- [`59455b6`](https://github.com/stdlib-js/stdlib/commit/59455b661612d4c4ed47c25d3077884b985742fc) - **docs:** add `toString`, `toJSON`, and `toDataView` declarations to Z-test results packages _(by Philipp Burckhardt)_

base/ztest/one-sample/results/factory/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import resultsFactory = require( './index' );
5353
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct<Float64Array>
5454
}
5555

56-
// The returned function can be invoked without `new`...
56+
// The returned constructor can be invoked without `new`...
5757
{
5858
const Results = resultsFactory( 'float64' );
5959

base/ztest/one-sample/results/float32/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Results = require( './index' );
2121

2222
// TESTS //
2323

24-
// The function returns a results object...
24+
// The constructor returns a results object...
2525
{
2626
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2727
const r0 = new Results( {} ); // $ExpectType ResultsStruct
@@ -36,7 +36,7 @@ import Results = require( './index' );
3636
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct
3737
}
3838

39-
// The function can be invoked without `new`...
39+
// The constructor can be invoked without `new`...
4040
{
4141
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4242
const r0 = Results( {} ); // $ExpectType ResultsStruct

base/ztest/one-sample/results/float64/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Results = require( './index' );
2121

2222
// TESTS //
2323

24-
// The function returns a results object...
24+
// The constructor returns a results object...
2525
{
2626
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2727
const r0 = new Results( {} ); // $ExpectType ResultsStruct
@@ -36,7 +36,7 @@ import Results = require( './index' );
3636
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct
3737
}
3838

39-
// The function can be invoked without `new`...
39+
// The constructor can be invoked without `new`...
4040
{
4141
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4242
const r0 = Results( {} ); // $ExpectType ResultsStruct

base/ztest/two-sample/results/factory/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import resultsFactory = require( './index' );
5353
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct<Float64Array>
5454
}
5555

56-
// The returned function can be invoked without `new`...
56+
// The returned constructor can be invoked without `new`...
5757
{
5858
const Results = resultsFactory( 'float64' );
5959

base/ztest/two-sample/results/float32/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Results = require( './index' );
2121

2222
// TESTS //
2323

24-
// The function returns a results object...
24+
// The constructor returns a results object...
2525
{
2626
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2727
const r0 = new Results( {} ); // $ExpectType ResultsStruct
@@ -36,7 +36,7 @@ import Results = require( './index' );
3636
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct
3737
}
3838

39-
// The function can be invoked without `new`...
39+
// The constructor can be invoked without `new`...
4040
{
4141
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4242
const r0 = Results( {} ); // $ExpectType ResultsStruct

base/ztest/two-sample/results/float64/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import Results = require( './index' );
2121

2222
// TESTS //
2323

24-
// The function returns a results object...
24+
// The constructor returns a results object...
2525
{
2626
// eslint-disable-next-line @typescript-eslint/no-unused-vars
2727
const r0 = new Results( {} ); // $ExpectType ResultsStruct
@@ -36,7 +36,7 @@ import Results = require( './index' );
3636
const r3 = new Results( new ArrayBuffer( 80 ), 8, 16 ); // $ExpectType ResultsStruct
3737
}
3838

39-
// The function can be invoked without `new`...
39+
// The constructor can be invoked without `new`...
4040
{
4141
// eslint-disable-next-line @typescript-eslint/no-unused-vars
4242
const r0 = Results( {} ); // $ExpectType ResultsStruct

0 commit comments

Comments
 (0)