From 08f642ffefecc18bce66b24a503b3efcc6af2a2c Mon Sep 17 00:00:00 2001 From: Christian Lawson-Perfect Date: Thu, 27 Jul 2023 11:43:05 +0100 Subject: [PATCH] Task docs: fix a typo in the example for Task.attempt --- src/Task.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Task.elm b/src/Task.elm index 1a9cbf7b..bcbefb1d 100644 --- a/src/Task.elm +++ b/src/Task.elm @@ -293,7 +293,7 @@ So we could _attempt_ to focus on a certain DOM node like this: type Msg = Click | Search String - | Focus (Result Browser.DomError ()) + | Focus (Result Browser.Dom.Error ()) focus : Cmd Msg focus =