lambdatex 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+2/−2 lines, 2 files
Files
lambdatex.cabal view
@@ -1,5 +1,5 @@ name: lambdatex-version: 0.1.0.0+version: 0.1.0.1 synopsis: Type-Safe LaTeX EDSL description: ΛTeX, pronounced 'LambdaTeX' is a Haskell EDSL that adds type-safety to LaTeX.
src/Text/LaTeX/LambdaTeX/Selection/Internal.hs view
@@ -79,4 +79,4 @@ -- | Tests whether a given part matches a given selector's part specification matches :: [Text] -> [Text] -> Bool-matches = flip isPrefixOf+matches a b = (a `isPrefixOf` b) || (b `isPrefixOf` a)