docs: fix incorrect haddock

This commit is contained in:
Simon Michael 2012-04-14 01:11:11 +00:00
parent 31f3e4dc27
commit 9b3486c14c

View File

@ -183,7 +183,7 @@ accountNameToAccountRegex :: String -> String
accountNameToAccountRegex "" = ""
accountNameToAccountRegex a = printf "^%s(:|$)" a
-- | Convert an account name to a regular expression matching it and its subaccounts.
-- | Convert an account name to a regular expression matching it but not its subaccounts.
accountNameToAccountOnlyRegex :: String -> String
accountNameToAccountOnlyRegex "" = ""
accountNameToAccountOnlyRegex a = printf "^%s$" a