From a17e1be51d815c1e293ef07b5ddf83a01311b273 Mon Sep 17 00:00:00 2001 From: Evan Czaplicki Date: Tue, 1 Nov 2016 18:55:03 -0700 Subject: [PATCH] Fix #1517, make it read smoother without comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It actually was intended, but I agree that it wasn’t so smooth to read. --- hints/bad-recursion.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/hints/bad-recursion.md b/hints/bad-recursion.md index 16d5d7f3e..2d4f6ed9f 100644 --- a/hints/bad-recursion.md +++ b/hints/bad-recursion.md @@ -53,9 +53,7 @@ type alias Comment = type Responses = Responses (List Comment) ``` -> Some of you may have recently run into this definition in the [hints for recursive aliases](recursive-alias.md)! - -And from there, you may want to be able to turn all the comments into JSON to send back to your server or to store in your database or whatever. So you will probably write some code like this: +You may have run into this definition in the [hints for recursive aliases](recursive-alias.md)! Anyway, once you have comments, you may want to turn them into JSON to send back to your server or to store in your database or whatever. So you will probably write some code like this: ```elm import Json.Decode as Decode exposing (Decoder)