From b8811e6e2adfa32b65cd3a3f1237e721736fd1d1 Mon Sep 17 00:00:00 2001 From: Jeroen Engels Date: Fri, 3 Sep 2021 21:19:30 +0200 Subject: [PATCH] Fix links to modules inside Debug --- src/Debug.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Debug.elm b/src/Debug.elm index cb8e32f3..11e1c2f2 100644 --- a/src/Debug.elm +++ b/src/Debug.elm @@ -88,7 +88,7 @@ idea is that a `todo` can be useful during development, but uncatchable runtime exceptions should not appear in the resulting applications. **Note:** For the equivalent of try/catch error handling in Elm, use modules -like [`Maybe`](#Maybe) and [`Result`](#Result) which guarantee that no error +like [`Maybe`](Maybe) and [`Result`](Result) which guarantee that no error goes unhandled! -} todo : String -> a