From 9f991fa94b775d050fb3a448e972802015fd77e7 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Tue, 8 Jul 2014 11:50:19 -0700 Subject: [PATCH] tweak Regex haddock --- hledger-lib/Hledger/Utils/Regex.hs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/hledger-lib/Hledger/Utils/Regex.hs b/hledger-lib/Hledger/Utils/Regex.hs index 37219347b..43be1595a 100644 --- a/hledger-lib/Hledger/Utils/Regex.hs +++ b/hledger-lib/Hledger/Utils/Regex.hs @@ -1,16 +1,22 @@ {-# LANGUAGE ScopedTypeVariables #-} -{- +{-| -Easy regular expression helpers. +Easy regular expression helpers, based on regex-tdfa and regexpr. These should -These should - have mnemonic names + - have simple monomorphic types + - work with strings + - support extended regular expressions + - support replacement + - support splitting + - support unicode + - be cross-platform, not requiring C libraries -}