From c65bf4c17f04e82345a8f28d88cc881a78adab43 Mon Sep 17 00:00:00 2001 From: Max Goldstein Date: Fri, 7 Mar 2014 22:15:22 -0500 Subject: [PATCH] Docs: Use Maybe in annotation I caught this one just by reading, but it wouldn't be the worst idea to systematically make sure each example compiles. --- libraries/Graphics/Input.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Graphics/Input.elm b/libraries/Graphics/Input.elm index 0ae2dcf..e409dde 100644 --- a/libraries/Graphics/Input.elm +++ b/libraries/Graphics/Input.elm @@ -118,7 +118,7 @@ favorite British sport: data Sport = Football | Cricket | Snooker - sport : Input Sport + sport : Input (Maybe Sport) sport = input Nothing sportDropDown : Element