Skip to content

Commit 235d042

Browse files
docs: use correct function name
PR-URL: #6323 Reviewed-by: Athan Reines <[email protected]>
1 parent 27ace7d commit 235d042

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/node_modules/@stdlib/math/base/special/fibonacci-index/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ n = fibonacciIndex( 5 );
6868
// returns 5
6969
```
7070

71-
If provided either a non-integer or `F_n <= 1`, the function returns `NaN`.
71+
If provided either a non-integer or `F_n <= 1`, the function returns `NaN`.
7272

7373
```javascript
7474
var n = fibonacciIndex( -1 );
@@ -156,19 +156,19 @@ for ( i = 3; i < 79; i++ ) {
156156
Computes the [Fibonacci number][fibonacci-number] index.
157157

158158
```c
159-
double out = stdlib_base_fibonacci( 2 );
159+
double out = stdlib_base_fibonacci_index( 2 );
160160
// returns 3
161161

162-
out = stdlib_base_fibonacci( 3 );
162+
out = stdlib_base_fibonacci_index( 3 );
163163
// returns 4
164164
```
165165

166166
The function accepts the following arguments:
167167

168-
- **n**: `[in] double` input value.
168+
- **F**: `[in] double` input value.
169169

170170
```c
171-
double stdlib_base_fibonacci( const double F );
171+
double stdlib_base_fibonacci_index( const double F );
172172
```
173173
174174
</section>

lib/node_modules/@stdlib/math/base/special/fibonacci-index/include/stdlib/math/base/special/fibonacci_index.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
/**
3030
* Computes the Fibonacci number index.
3131
*/
32-
double stdlib_base_fibonacci_index( const double x );
32+
double stdlib_base_fibonacci_index( const double F );
3333

3434
#ifdef __cplusplus
3535
}

0 commit comments

Comments
 (0)