diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -19,3 +19,7 @@
 ## 0.1.2.1 -- 2019-11-18
 
 * First version revised D. Fixed an issue with documentation. 
+
+## 0.1.2.2 -- 2019-11-18
+
+* First version revised E. Fixed another issue with documentation. 
diff --git a/EndOfExe.hs b/EndOfExe.hs
--- a/EndOfExe.hs
+++ b/EndOfExe.hs
@@ -18,7 +18,8 @@
                                   else error ("Please, install the executable " ++ ys ++ " into the directory in the PATH variable!")
                                   
 -- | Function to get the proper name of the executable in the system (it must be seen in the directories in the @PATH@ variable). 
--- You can use 'showE' \"nameOfExecutable\" e. g. inside the 'System.Process.callCommand' as the name of the executable
+-- You can use 'showE' \"nameOfExecutable\" to get @Just \"nameOfExecutable\"@ if it is present on the system. Further you can adopt it to be used 
+-- inside the 'System.Process.callCommand' as the name of the executable
 showE :: String -> Maybe String
 showE xs | null xs = error "No executable specified!"
          | otherwise = let r = unsafePerformIO . endOfExecutable $ xs in 
diff --git a/mmsyn3.cabal b/mmsyn3.cabal
--- a/mmsyn3.cabal
+++ b/mmsyn3.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                mmsyn3
-version:             0.1.2.1
+version:             0.1.2.2
 synopsis:            A small library to deal with executable endings
 description:         A small library to deal with executable endings. Uses a Maybe data representation inside an IO monad.
 homepage:            http://hackage.haskell.org/package/mmsyn3
