From 6872c277e1878b305e264fad18dea68d689c77e6 Mon Sep 17 00:00:00 2001 From: Spencer Gaston Date: Wed, 9 Jun 2021 12:02:56 -0400 Subject: [PATCH] Fix link to tail-call elimination doc --- src/AssocList.elm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AssocList.elm b/src/AssocList.elm index 8c2a0b4..dfcbcda 100644 --- a/src/AssocList.elm +++ b/src/AssocList.elm @@ -15,7 +15,7 @@ much everything except for functions and things that contain functions. All functions in this module are "stack safe," which means that your program won't crash from recursing over large association lists. You can read Evan Czaplicki's -[document on tail-call elimination](https://github.com/evancz/functional-programming-in-elm/blob/master/recursion/tail-call-elimination.md) +[document on tail-call elimination](https://github.com/evancz/functional-programming-in-elm/blob/master/book/recursion/tail-call-elimination.md) for more information about this topic.