diff options
author | Joris | 2017-05-01 21:53:54 +0200 |
---|---|---|
committer | Joris | 2017-05-01 21:53:54 +0200 |
commit | 4e3cd92a8063a70dab9ae0ccafd0552c78c6e005 (patch) | |
tree | 4a636cd5a8143f3e037b704854078e3cc81ee7e0 /src/Indicator.purs | |
parent | 0c5de00f7065d8dcf94b2fd85413bad3c7670dfd (diff) |
Update food
Diffstat (limited to 'src/Indicator.purs')
-rw-r--r-- | src/Indicator.purs | 4 |
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 |