From 43b7ae7b3a9c265f7eb124180b9b5d0d5e661146 Mon Sep 17 00:00:00 2001 From: ShujiOba Date: Sat, 30 Mar 2019 14:17:09 +0900 Subject: [PATCH] Fixed typo --- src/Validate.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Validate.elm b/src/Validate.elm index 5ff3e34..824e658 100644 --- a/src/Validate.elm +++ b/src/Validate.elm @@ -156,7 +156,7 @@ ifBlank subjectToString error = modelValidator = Validate.all [ ifNotInt .followers (\_ -> "Please enter a whole number for followers.") - , ifNotInt .stars (\stars -> "Stars was \"" ++ stars ++ "\", but it needs to be a whole number.")" + , ifNotInt .stars (\stars -> "Stars was \"" ++ stars ++ "\", but it needs to be a whole number.") ] -}