From bfdb28010afb46c294f6bf2bf94468d46a683d8a Mon Sep 17 00:00:00 2001 From: Taylor Fausak Date: Thu, 4 Nov 2021 23:05:43 +0000 Subject: [PATCH] Restore custom `Show` instance for `PPTextWrapper` --- src-literatetests/Main.hs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src-literatetests/Main.hs b/src-literatetests/Main.hs index 458566b..ae469e3 100644 --- a/src-literatetests/Main.hs +++ b/src-literatetests/Main.hs @@ -188,10 +188,10 @@ roundTripEqual c t = `shouldReturn` Right (PPTextWrapper t) newtype PPTextWrapper = PPTextWrapper Text - deriving (Eq, Show) + deriving Eq --- instance Show PPTextWrapper where --- show (PPTextWrapper t) = "\n" ++ Text.unpack t +instance Show PPTextWrapper where + show (PPTextWrapper t) = "\n" ++ Text.unpack t -- brittany-next-binding --columns 160 -- brittany-next-binding { lconfig_indentPolicy: IndentPolicyLeft }