aboutsummaryrefslogtreecommitdiff
path: root/src/Indicator.purs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Indicator.purs')
-rw-r--r--src/Indicator.purs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Indicator.purs b/src/Indicator.purs
index 751c069..29daa4f 100644
--- a/src/Indicator.purs
+++ b/src/Indicator.purs
@@ -15,6 +15,6 @@ className Bad = "bad"
fromGlycemicLoad :: Number -> Indicator
fromGlycemicLoad n
- | n <= 10.0 = Good
- | n < 20.0 = Medium
+ | n <= 8.0 = Good
+ | n <= 20.0 = Medium
| otherwise = Bad