diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -59,3 +59,7 @@
 ## 0.6.2.0 -- 2020-02-28
 
 * Sixth version revised B. Fixed issue with the not being compiled because of the wrong application of the function in the exceptRead function.
+
+## 0.6.3.0 -- 2020-02-28
+
+* Sixth version revised C. Fixed issue with the not being compiled because of the wrong application of the function in the takeWordS function.
diff --git a/MMSyn7s.hs b/MMSyn7s.hs
--- a/MMSyn7s.hs
+++ b/MMSyn7s.hs
@@ -107,7 +107,7 @@
                  ; putStrLn "which shows what sound representations are needed to be created if every sound is unique; "
                  ; putStrLn "      the other beginning is equivalent to the \"0\" behaviour."
                   }
-      "-v" -> putStrLn "mmsyn7s: version 0.6.2.0"
+      "-v" -> putStrLn "mmsyn7s: version 0.6.3.0"
       "-s" -> let ys = unwords . drop 1 $ texts in
                 do { putStrLn $ "Uniqueness periods:                                                      " ++ (show . uniquenessPeriods $ ys)
                    ; putStrLn $ "Possibly unique sounds representations density:                          " ++ (show . sndsDensity $ ys)
@@ -130,7 +130,7 @@
 printStatSyl :: String -> [String] -> IO ()
 printStatSyl xs yss =
   do { let m = read xs :: Int
-           zss = takeWordS m . syllablesUkr . unwords $ yss
+           zss = takeWordS m . unwords $ yss
            tss = sylLengths zss     
      ; putStrLn $ "Syllables in the text:                                                   " ++ show zss
      ; putStrLn "number of Ukrainian letters (except 'ь') in the syllables in the text "
diff --git a/mmsyn7s.cabal b/mmsyn7s.cabal
--- a/mmsyn7s.cabal
+++ b/mmsyn7s.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                mmsyn7s
-version:             0.6.2.0
+version:             0.6.3.0
 synopsis:            Shows a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs
 description:         A program and a library that show a sorted list of the Ukrainian sounds representations that can be used by mmsyn7 series of programs
 homepage:            https://hackage.haskell.org/package/mmsyn7s
