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