Skip to content

Commit 8e88607

Browse files
committed
V 1.0
1 parent 98ef372 commit 8e88607

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: CMD-Fibonacci-recursive.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def Fibonacci_Serie_Generator_Recursive(number):
3131
"""
3232
function for generating the Fibonacci series with a recursive function.
3333
@param number: the input for serie number.
34-
@type text: int
34+
@type number: integer
3535
@return: Fibonacci serie number
3636
@rtype: integer
3737
@examples:
@@ -54,7 +54,7 @@ def store_Fibonacci_series_in_array(number):
5454
"""
5555
function for storing the generated Fibonacci serie in an array.
5656
@param number: the input for serie number.
57-
@type text: int
57+
@type number: integer
5858
@return: Fibonacci_Series
5959
@rtype: array of integers
6060
@examples:
@@ -77,7 +77,7 @@ def array_Printer(array):
7777
"""
7878
function for printing each array element in a line.
7979
@param array: an array of elements.
80-
@type text: anything like integer, double and string.
80+
@type array: anything like integer, double and string.
8181
@examples:
8282
array_1 = []
8383
array_2 = [1, 2, 3]

0 commit comments

Comments
 (0)