diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -25,5 +25,8 @@
 
 ## 0.3.1.0 -- 2020-11-09
 
-* Third version revised A. Fixed the wrong comment about the first command line argument that specifies the coefficients. Fixed issue with the wrong output
-option for one of the columns in the propertiesTextG executable running output.
+* Third version revised A. Fixed issue with the wrong output option for one of the columns in the propertiesTextG executable running output.
+
+## 0.3.1.1 -- 2020-11-09
+
+* Third version revised A. Fixed the wrong comment about the first command line argument.
diff --git a/GetInfo/Main.hs b/GetInfo/Main.hs
--- a/GetInfo/Main.hs
+++ b/GetInfo/Main.hs
@@ -55,7 +55,7 @@
 main :: IO ()
 main = do
  args <- getArgs
- let !coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"_\".
+ let !coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just enter \"1_\".
  if isPair coeffs then do
   let !file = concat . drop 1 . take 2 $ args  -- The second command line arguments except those ones that are RTS arguments
       !gzS = concat . take 1 . drop 2 $ args -- The third command line argument that controls the choice of the number of intervals
diff --git a/Lines/Main.hs b/Lines/Main.hs
--- a/Lines/Main.hs
+++ b/Lines/Main.hs
@@ -46,7 +46,7 @@
 main :: IO ()
 main = do
  args <- getArgs
- let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"_\".
+ let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, pass just \"1_\".
  if isPair coeffs then do
   let !numericArgs = filter (all isDigit) . drop 3 $ args
       !choice = concat . drop 2 . take 3 $ args
diff --git a/Simple/Main.hs b/Simple/Main.hs
--- a/Simple/Main.hs
+++ b/Simple/Main.hs
@@ -48,7 +48,7 @@
 main :: IO ()
 main = do
  args <- getArgs
- let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just pass \"_\".
+ let coeffs = readCF . concat . take 1 $ args -- The first command line argument. If not sure, just pass \"1_\".
      !whspss = VB.fromList " 01-"
  if isPair coeffs then do
   let (!numericArgs,!textualArgs) = L.span (all isDigit) . drop 1 $ args
diff --git a/phonetic-languages-examples.cabal b/phonetic-languages-examples.cabal
--- a/phonetic-languages-examples.cabal
+++ b/phonetic-languages-examples.cabal
@@ -2,7 +2,7 @@
 -- further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                phonetic-languages-examples
-version:             0.3.1.0
+version:             0.3.1.1
 synopsis:            A generalization of the uniqueness-periods-vector-examples functionality.
 description:         Is intended to use more functionality of the Data.Vector, Data.Foldable, Data.Monoid and Data.SubG modules.
 homepage:            https://hackage.haskell.org/package/phonetic-languages-examples
