Rename function

This commit is contained in:
2025-05-20 16:47:31 -04:00
parent a8793b5adb
commit 2a3dddc7b0

View File

@@ -149,7 +149,7 @@ parseBold = parseBoldWith "**" <|> parseBoldWith "__"
parseItalic :: ReadP MdToken
parseItalic = parseItalicWith "*" <|> parseItalicWith "_"
where
parseBoldWith delim = do
parseItalicWith delim = do
string delim
inside <- greedyParse1 parseLineToken
string delim