File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed
min-signed-integer-dtype/docs/types
min-unsigned-integer-dtype/docs/types Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 4
4
5
5
<section class="release" id="unreleased">
6
6
7
- ## Unreleased (2024-12-15 )
7
+ ## Unreleased (2024-12-16 )
8
8
9
9
<section class="packages">
10
10
@@ -869,7 +869,10 @@ A total of 12 people contributed to this release. Thank you to the following con
869
869
870
870
<details>
871
871
872
+ - [`f4eb2ab`](https://github.com/stdlib-js/stdlib/commit/f4eb2ab24e14f4fd5585765a8c303e6398a10958) - **docs:** fix comment _(by Athan Reines)_
873
+ - [`00fff89`](https://github.com/stdlib-js/stdlib/commit/00fff89d59d8b6b09d28224ef9a3980e72b6a76c) - **docs:** fix comment _(by Athan Reines)_
872
874
- [`3c1789f`](https://github.com/stdlib-js/stdlib/commit/3c1789fdfe3ae56635ddf84fb5dfe229237794fa) - **docs:** add missing private annotations and decimals _(by Philipp Burckhardt)_
875
+ - [`a87dccb`](https://github.com/stdlib-js/stdlib/commit/a87dccb53b946b45b57b9a2c6c73ba7ace49d50e) - **docs:** fix description _(by Athan Reines)_
873
876
- [`629ce7b`](https://github.com/stdlib-js/stdlib/commit/629ce7bfa31b0d263f36fd597bb67acfc87689ff) - **fix:** ensure support for typed arrays larger than 2^32-1 _(by Athan Reines)_
874
877
- [`b8c41df`](https://github.com/stdlib-js/stdlib/commit/b8c41df78cd2cdc9cd3c3c6b223759d32f4f6e14) - **docs:** update related packages sections [(#3915)](https://github.com/stdlib-js/stdlib/pull/3915) _(by stdlib-bot)_
875
878
- [`02fe522`](https://github.com/stdlib-js/stdlib/commit/02fe52268be65ac41e413c27cef0f1f83b94636a) - **refactor:** remove unused file _(by Athan Reines)_
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import minSignedIntegerDataType = require( './index' );
21
21
22
22
// TESTS //
23
23
24
- // The function returns a data type..
24
+ // The function returns a data type...
25
25
{
26
26
minSignedIntegerDataType ( 2 ) ; // $ExpectType DataType
27
27
}
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import minUnsignedIntegerDataType = require( './index' );
21
21
22
22
// TESTS //
23
23
24
- // The function returns a data type..
24
+ // The function returns a data type...
25
25
{
26
26
minUnsignedIntegerDataType ( 2 ) ; // $ExpectType DataType
27
27
}
Original file line number Diff line number Diff line change 59
59
Examples
60
60
--------
61
61
> var idx = new {{alias}}( [ 1, 2, 3, 4 ] );
62
- > // ...
63
62
> {{alias}}.free( idx.id )
63
+ <boolean>
64
64
65
65
66
66
{{alias}}.get( id )
98
98
Returns
99
99
-------
100
100
out: Array|TypedArray|Object
101
- Array data type .
101
+ Array data.
102
102
103
103
Examples
104
104
--------
181
181
--------
182
182
> var idx = new {{alias}}( [ 1, 2, 3, 4 ] );
183
183
> idx.toString()
184
+ <string>
184
185
185
186
186
187
{{alias}}.prototype.toJSON()
You can’t perform that action at this time.
0 commit comments