From d41dbf837826498eed8279486764111528e2ede2 Mon Sep 17 00:00:00 2001 From: David Kaufman Date: Sun, 5 Dec 2021 21:35:15 -0500 Subject: [PATCH] small grammar correction --- hints/bad-recursion.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hints/bad-recursion.md b/hints/bad-recursion.md index 57e385434..46cd96fa9 100644 --- a/hints/bad-recursion.md +++ b/hints/bad-recursion.md @@ -5,7 +5,7 @@ There are two problems that will lead you here, both of them pretty tricky: 1. [**No Mutation**](#no-mutation) — Defining values in Elm is slightly different than defining values in languages like JavaScript. - 2. [**Tricky Recursion**](#tricky-recursion) — Sometimes you need to define recursive values when creating generators, decoders, and parsers. A common case is a JSON decoder a discussion forums where a comment may have replies, which may have replies, which may have replies, etc. + 2. [**Tricky Recursion**](#tricky-recursion) — Sometimes you need to define recursive values when creating generators, decoders, and parsers. A common case is a JSON decoder on a discussion forum where a comment may have replies, which may have replies, which may have replies, etc. ## No Mutation