hs-excelx 0.5.2.0 → 0.5.2.1
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- hs-excelx.cabal +1/−1
- src/Data/Excelx.hs +2/−2
hs-excelx.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: hs-excelx-version: 0.5.2.0+version: 0.5.2.1 synopsis: HS-Excelx provides basic read-only access to Excel 2007 and 2010 documents in XLSX format. -- description: license: BSD3
src/Data/Excelx.hs view
@@ -82,8 +82,8 @@ catCells :: [Cell] -> [Cell] catCells cells = filter noCell cells where noCell c = case c of- NoCell _ -> True- _ -> False+ NoCell _ -> False+ _ -> True a1form :: Position -> T.Text a1form (A1 t) = t