Skip to content

Commit c366324

Browse files
committed
Auto-generated commit
1 parent 15bd8a2 commit c366324

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

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

468468
<details>
469469

470+
- [`072e93e`](https://github.com/stdlib-js/stdlib/commit/072e93e688e341538c2f1dd25e67fff5dec753dc) - **docs:** use correct function name _(by Karan Anand)_
470471
- [`696cf19`](https://github.com/stdlib-js/stdlib/commit/696cf194b9ac255ada33dac8bbd3b5cb5dd8f923) - **bench:** adjust input range for uniform path coverage _(by Karan Anand)_
471472
- [`5ac2354`](https://github.com/stdlib-js/stdlib/commit/5ac23541c743ae50a46366e9415e7442e70559d7) - **test:** remove redundant fixtures and update tests _(by Karan Anand)_
472473
- [`8dc25bb`](https://github.com/stdlib-js/stdlib/commit/8dc25bbbe0a4ad6310ea0f823e812d38a627adad) - **docs:** fix case conditions and clean-up _(by Karan Anand)_

base/special/negafibonacci/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Computes the nth [negaFibonacci number][fibonacci-number].
194194
double out = stdlib_base_negafibonacci( 0 );
195195
// returns 0
196196

197-
out = stdlib_base_fibonacci( -1 );
197+
out = stdlib_base_negafibonacci( -1 );
198198
// returns 1
199199
```
200200

0 commit comments

Comments
 (0)