From 3611929f0167ef0c701a6f7d01c9bc28239099fb Mon Sep 17 00:00:00 2001 From: Adam Wespiser Date: Mon, 28 Feb 2022 23:34:03 -0500 Subject: [PATCH] Fix Hackage Formatting (#134) --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0548253a9..172153a9e 100644 --- a/README.md +++ b/README.md @@ -147,11 +147,10 @@ putLText :: MonadIO m => TL.Text -> m () * **How do I write manual Show instances if ``show`` isn't provided?** -Generally speaking writing manual instances of Show is a [Haskell antipattern]( -http://www.stephendiehl.com/posts/strings.html) because it produces -law-violating instances of Show. You probably want to use a [pretty -printer](https://hackage.haskell.org/package/wl-pprint-text) library for custom -printing. +Generally speaking writing manual instances of Show is a +[Haskell antipattern](http://www.stephendiehl.com/posts/strings.html) because it produces +law-violating instances of Show. You probably want to use a +[pretty printer](https://hackage.haskell.org/package/wl-pprint-text) library for custom printing. If backwards compatibility is needed then the base library can be imported manually.