Skip to content

Commit

Permalink
Merge pull request #45 from aleescar/issue-BUG015
Browse files Browse the repository at this point in the history
Solving issue for BUG015, ottimo lavoro!
  • Loading branch information
edoardocolella authored Dec 13, 2023
2 parents 56d73eb + 051b3b8 commit aabb27c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/BUG/mathematics.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def log10_value(a: float) -> float:
'''
BUG015: log10_value should return the logarithm in base 10 of the value, not the natural logarithm.
'''
result = math.log(a)
result = math.log10(a)
return result


Expand Down

0 comments on commit aabb27c

Please sign in to comment.