diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -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
diff --git a/hanspell.cabal b/hanspell.cabal
--- a/hanspell.cabal
+++ b/hanspell.cabal
@@ -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
