wai-digestive-functors 0.1 → 0.1.1
raw patch · 2 files changed
+4/−2 lines, 2 files
Files
Network/Wai/Digestive.hs view
@@ -53,7 +53,9 @@ pathToText :: [Text] -> Text pathToText [] = T.empty pathToText [p] = p-pathToText (p:ps) = T.concat (p : concatMap fragment ps)+pathToText (p:ps)+ | T.null p = pathToText ps -- Eat empties off the front+ | otherwise = T.concat (p : concatMap fragment ps) where fragment n = [ T.singleton '[',
wai-digestive-functors.cabal view
@@ -1,5 +1,5 @@ name: wai-digestive-functors-version: 0.1+version: 0.1.1 cabal-version: >= 1.8 license: OtherLicense license-file: COPYING