Skip to content

Commit ee778ee

Browse files
committed
Auto-generated commit
1 parent ddd4b3b commit ee778ee

File tree

8 files changed

+2
-7
lines changed

8 files changed

+2
-7
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -717,6 +717,8 @@ A total of 82 issues were closed in this release:
717717

718718
<details>
719719

720+
- [`612180d`](https://github.com/stdlib-js/stdlib/commit/612180d3f3bdb24cdb8d4c6a3882ce85ba309dac) - **chore:** clean-up _(by Athan Reines)_
721+
- [`c47b2ba`](https://github.com/stdlib-js/stdlib/commit/c47b2ba406b1466b6c477445a598138b6e1ba6cc) - **chore:** clean-up _(by Athan Reines)_
720722
- [`7f68fc4`](https://github.com/stdlib-js/stdlib/commit/7f68fc4aa254ea41b4d104041ff513239f104ba3) - **feat:** add `math/base/special/atanhf` [(#9514)](https://github.com/stdlib-js/stdlib/pull/9514) _(by Harsh Yadav, Karan Anand, Philipp Burckhardt)_
721723
- [`b18cbc4`](https://github.com/stdlib-js/stdlib/commit/b18cbc48334f3a417ea68d706df69b683b7ad20c) - **docs:** improve doctests for complex number instances in `math/base/special/cexp` [(#9769)](https://github.com/stdlib-js/stdlib/pull/9769) _(by Vishal Gaikwad)_
722724
- [`8da46ee`](https://github.com/stdlib-js/stdlib/commit/8da46ee80a830f024f0b347b84e48e239b9eaee9) - **docs:** improve doctests for complex number instances in `math/base/special/cfloor` [(#9766)](https://github.com/stdlib-js/stdlib/pull/9766) _(by Vishal Gaikwad)_

base/special/cexp/docs/types/index.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ import { Complex128 } from '@stdlib/types/complex';
3939
*
4040
* var v = cexp( new Complex128( 1.0, 0.0 ) );
4141
* // returns <Complex128>[ ~2.718, 0.0 ]
42-
*
4342
*/
4443
declare function cexp( z: Complex128 ): Complex128;
4544

base/special/cexp/lib/index.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*
3030
* var v = cexp( new Complex128( 0.0, 0.0 ) );
3131
* // returns <Complex128>[ 1.0, 0.0 ]
32-
*
3332
*/
3433

3534
// MODULES //

base/special/cexp/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ var imag = require( '@stdlib/complex/float64/imag' );
5353
*
5454
* var v = cexp( new Complex128( 1.0, 0.0 ) );
5555
* // returns <Complex128>[ ~2.718, 0.0 ]
56-
*
5756
*/
5857
function cexp( z ) {
5958
var out;

base/special/cexp/lib/native.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ var addon = require( './../src/addon.node' );
4646
*
4747
* var v = cexp( new Complex128( 1.0, 0.0 ) );
4848
* // returns <Complex128>[ ~2.718, 0.0 ]
49-
*
5049
*/
5150
function cexp( z ) {
5251
var v = addon( z );

base/special/cfloor/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ v = cfloor( new Complex128( 0.0, 0.0 ) );
4848

4949
v = cfloor( new Complex128( NaN, NaN ) );
5050
// returns <Complex128>[ NaN, NaN ]
51-
5251
```
5352

5453
</section>

base/special/cfloor/lib/main.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ var imag = require( '@stdlib/complex/float64/imag' );
5757
*
5858
* var v = cfloor( new Complex128( NaN, NaN ) );
5959
* // returns <Complex128>[ NaN, NaN ]
60-
6160
*/
6261
function cfloor( z ) {
6362
return new Complex128( floor( real( z ) ), floor( imag( z ) ) );

base/special/cfloor/lib/native.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ var addon = require( './../src/addon.node' );
3838
*
3939
* var v = cfloor( new Complex128( -1.5, 2.5 ) );
4040
* // returns <Complex128>[ -2.0, 2.0 ]
41-
*
4241
*/
4342
function cfloor( z ) {
4443
var v = addon( z );

0 commit comments

Comments
 (0)