From 32cf2549a44030fe1ddd9ee4117d033c62cee2ad Mon Sep 17 00:00:00 2001 From: Nikolaos Chatzikonstantinou Date: Mon, 4 Aug 2025 08:12:02 -0400 Subject: [PATCH] fix haddock markdown for module links Module links use double quotes, not single quotes. --- Data/Attoparsec/ByteString/Lazy.hs | 2 +- Data/Attoparsec/Lazy.hs | 2 +- Data/Attoparsec/Text/Lazy.hs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Data/Attoparsec/ByteString/Lazy.hs b/Data/Attoparsec/ByteString/Lazy.hs index 73b7de45..7ecec42b 100644 --- a/Data/Attoparsec/ByteString/Lazy.hs +++ b/Data/Attoparsec/ByteString/Lazy.hs @@ -15,7 +15,7 @@ -- Simple, efficient combinator parsing that can consume lazy -- 'ByteString' strings, loosely based on the Parsec library. -- --- This is essentially the same code as in the 'Data.Attoparsec' +-- This is essentially the same code as in the "Data.Attoparsec" -- module, only with a 'parse' function that can consume a lazy -- 'ByteString' incrementally, and a 'Result' type that does not allow -- more input to be fed in. Think of this as suitable for use with a diff --git a/Data/Attoparsec/Lazy.hs b/Data/Attoparsec/Lazy.hs index 9e6ecf6e..4c1be559 100644 --- a/Data/Attoparsec/Lazy.hs +++ b/Data/Attoparsec/Lazy.hs @@ -10,7 +10,7 @@ -- Simple, efficient combinator parsing for lazy 'ByteString' -- strings, loosely based on the Parsec library. -- --- This is essentially the same code as in the 'Data.Attoparsec' +-- This is essentially the same code as in the "Data.Attoparsec" -- module, only with a 'parse' function that can consume a lazy -- 'ByteString' incrementally, and a 'Result' type that does not allow -- more input to be fed in. Think of this as suitable for use with a diff --git a/Data/Attoparsec/Text/Lazy.hs b/Data/Attoparsec/Text/Lazy.hs index 79ac0577..619873c6 100644 --- a/Data/Attoparsec/Text/Lazy.hs +++ b/Data/Attoparsec/Text/Lazy.hs @@ -16,7 +16,7 @@ -- Simple, efficient combinator parsing that can consume lazy 'Text' -- strings, loosely based on the Parsec library. -- --- This is essentially the same code as in the 'Data.Attoparsec.Text' +-- This is essentially the same code as in the "Data.Attoparsec.Text" -- module, only with a 'parse' function that can consume a lazy -- 'Text' incrementally, and a 'Result' type that does not allow -- more input to be fed in. Think of this as suitable for use with a