Rename function

This commit is contained in:
2025-05-20 16:43:35 -04:00
parent d2c8565f62
commit 41b35be7c9

View File

@@ -147,7 +147,7 @@ parseBold = parseBoldWith "**" <|> parseBoldWith "__"
-- Parse italic text
parseItalic :: ReadP MdToken
parseItalic = parseBoldWith "*" <|> parseBoldWith "_"
parseItalic = parseItalicWith "*" <|> parseItalicWith "_"
where
parseBoldWith delim = do
string delim