From 0cea0b19c62407d7537efbfbeda96aeda36d904b Mon Sep 17 00:00:00 2001 From: Jen-Mei Wu Date: Fri, 5 Apr 2019 00:10:34 -0700 Subject: [PATCH] =?UTF-8?q?Updated=20links=20and=20changed=20reference=20t?= =?UTF-8?q?o=20=E2=80=9CUnion=20Type=E2=80=9D=20to=20=E2=80=9CCustom=20Typ?= =?UTF-8?q?e=E2=80=9D.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Html/Events.elm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Html/Events.elm b/src/Html/Events.elm index 053c792..e147676 100644 --- a/src/Html/Events.elm +++ b/src/Html/Events.elm @@ -10,11 +10,11 @@ module Html.Events exposing ) {-| -It is often helpful to create an [Union Type][] so you can have many different kinds +It is often helpful to create an [Custom Type][] so you can have many different kinds of events as seen in the [TodoMVC][] example. -[Union Type]: https://elm-lang.org/learn/Union-Types.elm -[TodoMVC]: https://github.com/evancz/elm-todomvc/blob/master/Todo.elm +[Custom Type]: https://guide.elm-lang.org/types/custom_types.html +[TodoMVC]: https://github.com/evancz/elm-todomvc/blob/master/src/Main.elm # Mouse @docs onClick, onDoubleClick,