From 8032a144321e7f578e064a1f448dec523421c714 Mon Sep 17 00:00:00 2001 From: Ju Liu Date: Mon, 14 Oct 2019 17:08:55 +0100 Subject: [PATCH] Small typo --- src/Nri/Ui/Modal/V8.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Nri/Ui/Modal/V8.elm b/src/Nri/Ui/Modal/V8.elm index ce969e41..e1db8ffd 100644 --- a/src/Nri/Ui/Modal/V8.elm +++ b/src/Nri/Ui/Modal/V8.elm @@ -21,7 +21,7 @@ module Nri.Ui.Modal.V8 exposing type Msg = ModalMsg Modal.Msg - | DoSomthing + | DoSomething view : Modal.Model -> Html Msg view state = @@ -38,7 +38,7 @@ module Nri.Ui.Modal.V8 exposing , Modal.viewFooter [ Button.button "Continue" [ Button.primary - , Button.onClick DoSomthing + , Button.onClick DoSomething , Button.custom onlyFocusableElement ] , text "`onlyFocusableElement` will trap the focus on the 'Continue' button."