File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ def Fibonacci_Serie_Generator_Recursive(number):
31
31
"""
32
32
function for generating the Fibonacci series with a recursive function.
33
33
@param number: the input for serie number.
34
- @type text: int
34
+ @type number: integer
35
35
@return: Fibonacci serie number
36
36
@rtype: integer
37
37
@examples:
@@ -54,7 +54,7 @@ def store_Fibonacci_series_in_array(number):
54
54
"""
55
55
function for storing the generated Fibonacci serie in an array.
56
56
@param number: the input for serie number.
57
- @type text: int
57
+ @type number: integer
58
58
@return: Fibonacci_Series
59
59
@rtype: array of integers
60
60
@examples:
@@ -77,7 +77,7 @@ def array_Printer(array):
77
77
"""
78
78
function for printing each array element in a line.
79
79
@param array: an array of elements.
80
- @type text : anything like integer, double and string.
80
+ @type array : anything like integer, double and string.
81
81
@examples:
82
82
array_1 = []
83
83
array_2 = [1, 2, 3]
You can’t perform that action at this time.
0 commit comments