diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,3 +4,7 @@
 
 * First version. Released on an unsuspecting world.
 
+## 0.1.1.0 -- 2023-09-22
+
+* First version revised A. Fixed issue with some non-typical though possible strings.
+
diff --git a/Phladiprelio/General/Datatype.hs b/Phladiprelio/General/Datatype.hs
--- a/Phladiprelio/General/Datatype.hs
+++ b/Phladiprelio/General/Datatype.hs
@@ -5,7 +5,7 @@
 
 import GHC.Base
 import GHC.List
-import Data.Char (isDigit)
+import Data.Char (isDigit, isSpace)
 import Text.Read
 import GHC.Num ((*))
 
@@ -25,7 +25,7 @@
 readBasicUkr0 temp fConvA fConvD xs@(_:_) = dc `mappend` ((readU2 ws * d) : readBasicUkr0 d fConvA fConvD qs)
    where (ts, us) = break (== '_') xs
          dc 
-           | null ts = [temp]
+           | null . filter (not . isSpace) $ ts = [temp]
            | otherwise = fConvD . fConvA $ ts
          d = last dc
          vs = dropWhile (== '_') us
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@
 P.S.: the author would like to devote this project to support the [Foundation
 Gastrostars](https://gastrostars.nl).
 
-On the 2023/09/22 there is Nathalie Kok, the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the first version is also dedicated to Nathalie Kok.
+On the 2023/09/22 there is Nathalie Kok, the mother of the foundation founder [Emma Kok](https://emmakok.nl) and the member of the foundation board, so the versions 0.1.0.0 and 0.1.1.0 (the two first ones!) are also dedicated to Nathalie Kok.
 
 If you would like to share some financial support, please, contact the mentioned foundation
 using the URL:
diff --git a/phladiprelio-general-datatype.cabal b/phladiprelio-general-datatype.cabal
--- a/phladiprelio-general-datatype.cabal
+++ b/phladiprelio-general-datatype.cabal
@@ -1,6 +1,6 @@
 cabal-version:      1.24
 name:               phladiprelio-general-datatype
-version:            0.1.0.0
+version:            0.1.1.0
 synopsis:           Extended functionality of PhLADiPreLiO
 description:        Can be used not only for language, but also for simpler music and lyrics composing.
 homepage:
