packages feed

hanspell 0.2.5.0 → 0.2.6.0

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

app/Main.hs view
@@ -40,8 +40,8 @@     typos <- case checker of         DAUM -> concat <$> mapConcurrently spellCheckByDaum splitted         PNU  -> concat <$> mapConcurrently spellCheckByPnu splitted-        All  -> (++) <$> (concat <$> mapConcurrently spellCheckByDaum splitted)-                     <*> (concat <$> mapConcurrently spellCheckByPnu splitted)+        All  -> (++) <$> (concat <$> mapConcurrently spellCheckByPnu splitted)+                     <*> (concat <$> mapConcurrently spellCheckByDaum splitted)      -- Removes duplicated typos.     let typos' = rmdupTypos typos
hanspell.cabal view
@@ -5,7 +5,7 @@ -- see: https://github.com/sol/hpack  name:           hanspell-version:        0.2.5.0+version:        0.2.6.0 synopsis:       Korean spell checker description:    This package includes @hanspell@, a simple command line spell check program and a library, @Language.Hanspell@. Both of them are based on DAUM spell check web service and Pusan National University spell check web service. category:       language,korean,spellchecker