From a533c51a12d90b674925cef118d53b6b327f4235 Mon Sep 17 00:00:00 2001 From: Mirko Westermeier Date: Mon, 29 Apr 2024 13:22:44 +0200 Subject: [PATCH] Fully qualify Ini links in haddock --- src/Trivialini.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Trivialini.hs b/src/Trivialini.hs index d7a3a33..4a6a649 100644 --- a/src/Trivialini.hs +++ b/src/Trivialini.hs @@ -41,7 +41,7 @@ the line as values. The leading and trailing spaces in section headers, keys and values are trimmed. -} --- | Read 'Ini' data from a given filename +-- | Read t'Ini' data from a given filename readIniFile :: FilePath -> IO IniMap readIniFile file = sections . read <$> readFile file @@ -56,7 +56,7 @@ newtype Ini = Ini { sections :: IniMap } ( Eq -- ^ Default Eq instance ) --- | Stringification of 'Ini' data. The result can be parsed again as 'Ini' +-- | Stringification of t'Ini' data. The result can be parsed again as t'Ini' -- data. instance Show Ini where show = unlines . map section . assocs . sections