diff --git a/yesod-core/Yesod/Routes/Parse.hs b/yesod-core/Yesod/Routes/Parse.hs index 5b325590..dcc9e501 100644 --- a/yesod-core/Yesod/Routes/Parse.hs +++ b/yesod-core/Yesod/Routes/Parse.hs @@ -285,7 +285,9 @@ dropBracket str@('{':x) = case break (== '}') x of _ -> error $ "Unclosed bracket ('{'): " ++ str dropBracket x = x --- If this line ends with a backslash, concatenate it together with the next line. +-- | If this line ends with a backslash, concatenate it together with the next line. +-- +-- @since 1.6.8 lineContinuations :: String -> [String] -> [String] lineContinuations this [] = [this] lineContinuations this below@(next:rest) = case unsnoc this of diff --git a/yesod-core/yesod-core.cabal b/yesod-core/yesod-core.cabal index 83eb5f7a..95cbe114 100644 --- a/yesod-core/yesod-core.cabal +++ b/yesod-core/yesod-core.cabal @@ -1,5 +1,5 @@ name: yesod-core -version: 1.6.7 +version: 1.6.8 license: MIT license-file: LICENSE author: Michael Snoyman