From b4f0386d2503136d0d5f6c99f79033a915a103a7 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Sun, 30 Jul 2023 17:32:55 -0400 Subject: [PATCH] Clarify docstring --- transform.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transform.py b/transform.py index 38e6c71..500aa31 100644 --- a/transform.py +++ b/transform.py @@ -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):