8000 Auto-generated commit · stdlib-js/complex@b240fb1 · GitHub
[go: up one dir, main page]

Skip to content

Commit b240fb1

Browse files
committed
Auto-generated commit
1 parent 8eef36c commit b240fb1

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3232

3333
<details>
3434

35+
- [`abf0407`](https://github.com/stdlib-js/stdlib/commit/abf040787f6598438b0100a729a8331b7f80f62f) - **chore:** resolve lint errors in TS files _(by Philipp Burckhardt)_
3536
- [`58f787f`](https://github.com/stdlib-js/stdlib/commit/58f787fa43b56f5c5480542d6f91f5038574dbfb) - **chore:** use ComplexLike type _(by Philipp Burckhardt)_
3637
- [`975147f`](https://github.com/stdlib-js/stdlib/commit/975147f3125c786ec1672acb3d2564ca16eaa790) - **docs:** fix TSDoc lint errors _(by Philipp Burckhardt)_
3738
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_

base/parse/docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import parse = require( './index' );
2424
// The function returns a complex like object...
2525
{
2626
const str = '54 + 3i';
27-
parse( str ); // $ExpectType {re: number; im: number} | null
27+
parse( str ); // $ExpectType ComplexLike | null
2828
}
2929

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

float32/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ interface Namespace {
8787
* Parse a string representation of a 64-bit complex number.
8888
*
8989
* @param str - string representation of a complex number
90-
* @returns Complex64 instance
9190
* @throws must provide a string recognized as a complex number
91+
* @returns Complex64 instance
9292
*
9393
* @example
9494
* var str = '5 + 3i';

float32/parse/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ import { Complex64 } from '@stdlib/types/complex';
2929
* Parse a string representation of a 64-bit complex number.
3030
*
3131
* @param str - string representation of a complex number
32-
* @returns Complex64 instance
3332
* @throws must provide a string recognized as a complex number
33+
* @returns Complex64 instance
3434
*
3535
* @example
3636
* var str = '5 + 3i';

promotion-rules/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ declare function promotionRules( dtype1: string, dtype2: string ): null;
8888
/**
8989
* Returns a type promotion table displaying complex number data types with the smallest size and closest "kind" to which data types can be safely cast.
9090
*
91-
* @param dtype1 - data type
92-
* @param dtype2 - data type
9391
* @returns promotion rule table
9492
*
9593
* @example

0 commit comments

Comments
 (0)
0