Skip to content

Commit 14c56ba

Browse files
committed
docs: fix the function description
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: passed - task: lint_package_json status: passed - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: passed - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: passed - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ade3596 commit 14c56ba

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

lib/node_modules/@stdlib/math/base/special/fibonaccif/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# Fibonaccif
2222

23-
> Compute the nth [Fibonacci number][fibonacci-number] (single-precision).
23+
> Compute the nth [Fibonacci number][fibonacci-number] as a single-precision floating-point number.
2424
2525
<section class="intro">
2626

@@ -60,7 +60,7 @@ var fibonaccif = require( '@stdlib/math/base/special/fibonaccif' );
6060

6161
#### fibonaccif( n )
6262

63-
Computes the nth [Fibonacci number][fibonacci-number] (single-precision).
63+
Computes the nth [Fibonacci number][fibonacci-number] as a single-precision floating-point number.
6464

6565
```javascript
6666
var v = fibonaccif( 0 );
@@ -126,7 +126,7 @@ var fibonaccif = require( '@stdlib/math/base/special/fibonaccif' );
126126

127127
var x = discreteUniform( 10, 0, 36 );
128128

129-
logEachMap( 'fibonaccif(%d) = %f', x, fibonaccif );
129+
logEachMap( 'fibonaccif(%d) = %0.1f', x, fibonaccif );
130130
```
131131

132132
</section>
@@ -161,7 +161,7 @@ logEachMap( 'fibonaccif(%d) = %f', x, fibonaccif );
161161

162162
#### stdlib_base_fibonaccif( n )
163163

164-
Computes the nth [Fibonacci number][fibonacci-number] (single-precision).
164+
Computes the nth [Fibonacci number][fibonacci-number] as a single-precision floating-point number.
165165

166166
```c
167167
float out = stdlib_base_fibonaccif( 0 );

lib/node_modules/@stdlib/math/base/special/fibonaccif/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11

22
{{alias}}( n )
3-
Computes the nth Fibonacci number (single-precision).
3+
Computes the nth Fibonacci number as a single-precision floating-point
4+
number.
45

56
Fibonacci numbers follow the recurrence relation
67

lib/node_modules/@stdlib/math/base/special/fibonaccif/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// TypeScript Version: 4.1
2020

2121
/**
22-
* Computes the nth Fibonacci number (single-precision).
22+
* Computes the nth Fibonacci number as a single-precision floating-point number.
2323
*
2424
* ## Notes
2525
*

lib/node_modules/@stdlib/math/base/special/fibonaccif/examples/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ var fibonaccif = require( './../lib' );
2424

2525
var x = discreteUniform( 10, 0, 36 );
2626

27-
logEachMap( 'fibonaccif(%d) = %0.4f', x, fibonaccif );
27+
logEachMap( 'fibonaccif(%d) = %0.1f', x, fibonaccif );

lib/node_modules/@stdlib/math/base/special/fibonaccif/include/stdlib/math/base/special/fibonaccif.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ extern "C" {
2929
#endif
3030

3131
/**
32-
* Computes the nth Fibonacci number (single-precision).
32+
* Computes the nth Fibonacci number as a single-precision floating-point number.
3333
*/
3434
float stdlib_base_fibonaccif( const int32_t n );
3535

lib/node_modules/@stdlib/math/base/special/fibonaccif/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
'use strict';
2020

2121
/**
22-
* Compute the nth Fibonacci number (single-precision).
22+
* Compute the nth Fibonacci number as a single-precision floating-point number.
2323
*
2424
* @module @stdlib/math/base/special/fibonaccif
2525
*

lib/node_modules/@stdlib/math/base/special/fibonaccif/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var FIBONACCI = require( './fibonacci.json' );
2929
// MAIN //
3030

3131
/**
32-
* Computes the nth Fibonacci number (single-precision).
32+
* Computes the nth Fibonacci number as a single-precision floating-point number.
3333
*
3434
* @param {NonNegativeInteger} n - the Fibonacci number to compute
3535
* @returns {NonNegativeInteger} Fibonacci number

lib/node_modules/@stdlib/math/base/special/fibonaccif/lib/native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var addon = require( './../src/addon.node' );
2626
// MAIN //
2727

2828
/**
29-
* Computes the nth Fibonacci number (single-precision).
29+
* Computes the nth Fibonacci number as a single-precision floating-point number.
3030
*
3131
* @private
3232
* @param {NonNegativeInteger} n - the Fibonacci number to compute

lib/node_modules/@stdlib/math/base/special/fibonaccif/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@stdlib/math/base/special/fibonaccif",
33
"version": "0.0.0",
4-
"description": "Compute the nth Fibonacci number (single-precision).",
4+
"description": "Compute the nth Fibonacci number as a single-precision floating-point number.",
55
"license": "Apache-2.0",
66
"author": {
77
"name": "The Stdlib Authors",

lib/node_modules/@stdlib/math/base/special/fibonaccif/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static const int32_t fibonacci_value[ 37 ] = {
6060
};
6161

6262
/**
63-
* Computes the nth Fibonacci number (single-precision).
63+
* Computes the nth Fibonacci number as a single-precision floating-point number.
6464
*
6565
* @param n input value
6666
* @return output value

0 commit comments

Comments
 (0)