From ed8b0a94fe6f26d8a3031d2ea2d032de2dc1c00e Mon Sep 17 00:00:00 2001 From: mike Date: Mon, 10 Dec 2018 16:46:03 -0700 Subject: [PATCH] Add comments for h1, h6 --- src/Html.elm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Html.elm b/src/Html.elm index 70b8645..8919a5d 100644 --- a/src/Html.elm +++ b/src/Html.elm @@ -205,7 +205,8 @@ aside = Elm.Kernel.VirtualDom.node "aside" -{-|-} +{-| Defines a heading of maximum importance to the document. +-} h1 : List (Attribute msg) -> List (Html msg) -> Html msg h1 = Elm.Kernel.VirtualDom.node "h1" @@ -235,7 +236,8 @@ h5 = Elm.Kernel.VirtualDom.node "h5" -{-|-} +{-| Defines a heading of least importance to the document. +-} h6 : List (Attribute msg) -> List (Html msg) -> Html msg h6 = Elm.Kernel.VirtualDom.node "h6"