From 2f8df43f5ad39b349b60e6d0fa09a86d10042da0 Mon Sep 17 00:00:00 2001 From: Y0hy0h Date: Thu, 16 Jan 2020 16:27:34 +0100 Subject: [PATCH] Remove `module` declaration from buttons example All other examples omit the module declaration. It can confuse newcomers, since they might look at the examples before having read about modules. --- examples/buttons.elm | 2 -- 1 file changed, 2 deletions(-) diff --git a/examples/buttons.elm b/examples/buttons.elm index 95753cd05..6ba11cf96 100644 --- a/examples/buttons.elm +++ b/examples/buttons.elm @@ -1,5 +1,3 @@ -module Main exposing (..) - -- Press buttons to increment and decrement a counter. -- -- Read how it works: