Clarify docstring

This commit is contained in:
Chris Proctor 2023-07-30 17:32:55 -04:00
parent 05f2ddd9b3
commit b4f0386d25
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def minimum(data):
raise NotImplementedError
def bounds(data):
"Returns a list of the largest and smallest numbers in data"
"Returns a list of the smallest and largest numbers in data"
raise NotImplementedError
def clamp(value, low, high):