Skip to content

Commit cb2062b

Browse files
committed
Auto-generated commit
1 parent cfe72a6 commit cb2062b

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

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

709709
<details>
710710

711+
- [`e7fbc24`](https://github.com/stdlib-js/stdlib/commit/e7fbc24f9fb918a92f7e9118fbe9fed8573117c8) - **docs:** fix example code in TSDoc declaration _(by Philipp Burckhardt)_
711712
- [`ed42a4f`](https://github.com/stdlib-js/stdlib/commit/ed42a4f20e80757e6e855dc9ac4e70ab5a28f423) - **docs:** update related packages sections [(#8835)](https://github.com/stdlib-js/stdlib/pull/8835) _(by stdlib-bot)_
712713
- [`a297ebe`](https://github.com/stdlib-js/stdlib/commit/a297ebeb5aae3de8c04c56e02e5e0ef4f229b2f8) - **docs:** fix doctest return annotation comment _(by Philipp Burckhardt)_
713714
- [`1dcf101`](https://github.com/stdlib-js/stdlib/commit/1dcf1013f5f6b583f11aa4f33750a549114de858) - **docs:** update example code in namespace TSDoc declarations _(by Philipp Burckhardt)_

iter/utils/continued-fraction/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ interface Options {
4949
* @returns result
5050
*
5151
* @example
52+
* var iterContinuedFractionSeq = require( '@stdlib/math/iter/sequences/continued-fraction' );
53+
*
5254
* // Create an iterator for generating continued fraction terms:
53-
* var it = iterContinuedFraction( 3.245 );
55+
* var it = iterContinuedFractionSeq( 3.245 );
5456
*
5557
* // Reconstruct the original value from the terms:
5658
* var v = iterContinuedFraction( it );

iter/utils/docs/types/index.d.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,10 @@ interface Namespace {
3838
* @returns result
3939
*
4040
* @example
41+
* var iterContinuedFractionSeq = require( './../../../../iter/sequences/continued-fraction' );
42+
*
4143
* // Create an iterator for generating continued fraction terms:
42-
* var it = ns.iterContinuedFraction( 3.245 );
44+
* var it = iterContinuedFractionSeq( 3.245 );
4345
*
4446
* // Reconstruct the original value from the terms:
4547
* var v = ns.iterContinuedFraction( it );

0 commit comments

Comments
 (0)