summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--algorithms.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/algorithms.py b/algorithms.py
index 707d55d..d0c79e3 100644
--- a/algorithms.py
+++ b/algorithms.py
@@ -27,7 +27,7 @@ def chunks(lst, n):
def lerp_color(start_color, end_color, t):
- """ Lerp between two colors by a factor t.
+ """ Linearly interpolate between two colors by a factor t.
Colors are assumed to be in the form "#RRGGBB"
"""