Skip to content

Commit

Permalink
Fully qualify Ini links in haddock
Browse files Browse the repository at this point in the history
  • Loading branch information
memowe committed Apr 29, 2024
1 parent 957cb0c commit a533c51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Trivialini.hs
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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
Expand Down

0 comments on commit a533c51

Please sign in to comment.