diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -95,4 +95,8 @@
 
 ## 0.16.1.0 -- 2020-08-24
 
-* Sixteenth version revised A. Fixed an issue with usage of the jottedConv function in the DobutokO.Poetry.Ukranian.PrepareText mudule. 
+* Sixteenth version revised A. Fixed an issue with usage of the jottedConv function in the DobutokO.Poetry.Ukranian.PrepareText module. 
+
+## 0.16.2.0 -- 2020-08-24
+
+* Sixteenth version revised B. Fixed an issue with usage of the auxiliary1 function in the DobutokO.Poetry.Ukranian.PrepareText module. 
diff --git a/DobutokO/Poetry/Ukrainian/PrepareText.hs b/DobutokO/Poetry/Ukrainian/PrepareText.hs
--- a/DobutokO/Poetry/Ukrainian/PrepareText.hs
+++ b/DobutokO/Poetry/Ukrainian/PrepareText.hs
@@ -106,7 +106,7 @@
 auxiliary1 :: [String] -> [String]
 auxiliary1 (xs:ys:zs:xss) 
   | isConcatenated ys || isPronoun ys = 
-      auxiliary1 (xs:auxiliary1 ((ys ++ (drop 1 . jottedConv $ ' ':ys)):xss))
+      auxiliary1 (xs:auxiliary1 ((ys ++ (drop 1 . jottedConv $ ' ':zs)):xss))
   | isConcatenated xs || isPronoun xs = auxiliary1 ((xs ++ (drop 1 . jottedConv $ ' ':ys)):zs:xss)
   | otherwise = xs:auxiliary1 (ys:zs:xss)
 auxiliary1 x@(xs:ys:xss) 
diff --git a/dobutokO-poetry.cabal b/dobutokO-poetry.cabal
--- a/dobutokO-poetry.cabal
+++ b/dobutokO-poetry.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                dobutokO-poetry
-version:             0.16.1.0
+version:             0.16.2.0
 synopsis:            Helps to order the 7 or less Ukrainian words to obtain somewhat suitable for poetry or music text
 description:         Helps to order the 7 or less Ukrainian words (or their concatenations) to obtain somewhat suitable for poetry or music text. Can be also used as a research instrument with generalized functions.
 
