diff --git a/src/main/py/logarithmic_and_expo_and_root_calculations.py b/src/main/py/logarithmic_and_expo_and_root_calculations.py index 98c53f4..5becc90 100644 --- a/src/main/py/logarithmic_and_expo_and_root_calculations.py +++ b/src/main/py/logarithmic_and_expo_and_root_calculations.py @@ -1,8 +1,8 @@ import math -def sqrt(root_of): - return math.sqrt(root_of) +def sqrt(number): + return math.sqrt(number) def potentiate(first_number, second_number):