Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kmtGryffindor20 committed Oct 14, 2023
1 parent 59c5f15 commit 22a3750
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions maths/geometric_mean.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"""
The Geometric Mean of n numbers is defined as the n-th root of the product
of those numbers. It is used to measure the central tendenct of the numbers.
of those numbers. It is used to measure the central tendency of the numbers.
https://en.wikipedia.org/wiki/Geometric_mean
"""


def compute_geometric_mean(*args: float or int) -> float:
def compute_geometric_mean(*args: int) -> float:
"""
Return the geometric mean of the argument numbers.
>>> compute_geometric_mean(2,8)
Expand Down

0 comments on commit 22a3750

Please sign in to comment.