From 7e28d8e12371242047cfbcdad45cdcaa71a75d28 Mon Sep 17 00:00:00 2001 From: asteroidb612 Date: Mon, 25 Apr 2022 16:33:36 -0700 Subject: [PATCH] Fix import typo --- book/interop/custom_elements.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/interop/custom_elements.md b/book/interop/custom_elements.md index f3dfb6b7..8b7cbc41 100644 --- a/book/interop/custom_elements.md +++ b/book/interop/custom_elements.md @@ -64,7 +64,7 @@ Load that before you initialize your Elm code, and you will be able to write cod ```elm import Html exposing (Html, node) -import Html.Attributes (attribute) +import Html.Attributes exposing (attribute) viewDate : String -> Int -> Int -> Html msg viewDate lang year month =