From a3c8c79de909fd5b9753f1085944a349551d4bae Mon Sep 17 00:00:00 2001 From: cupcakearmy Date: Thu, 23 Jul 2020 20:07:32 +0200 Subject: [PATCH] typo --- components/AnimatedBackground.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/AnimatedBackground.tsx b/components/AnimatedBackground.tsx index c192a2c..2091274 100644 --- a/components/AnimatedBackground.tsx +++ b/components/AnimatedBackground.tsx @@ -20,7 +20,7 @@ const AnimatedBackground: React.FC = () => { const update = () => { const from = getRandomColor() - // Calculate cojugate color based on the golden ratio + // Calculate conjugate color based on the golden ratio const to: Color = [Math.floor(from[0] + (255 * GoldenRatio * 2)) % 255, from[1], from[2]] setStart(from)