diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -7,3 +7,8 @@
 ## 0.2.0.0 -- 2021-07-24
 
 * Second version. Added two new functions to 'grow' the lines to the needed value. Some code improvements.
+
+## 0.2.1.0 -- 2021-07-24
+
+* Second version revised A. Changed the prepareGrowTextN function (and renamed it to prepareGrowTextMN) so that it
+has some additional meaning.
diff --git a/Phonetic/Languages/Ukrainian/PrepareText.hs b/Phonetic/Languages/Ukrainian/PrepareText.hs
--- a/Phonetic/Languages/Ukrainian/PrepareText.hs
+++ b/Phonetic/Languages/Ukrainian/PrepareText.hs
@@ -36,7 +36,7 @@
   , prepareText
   , prepareTextN
   , growLinesN
-  , prepareGrowTextN
+  , prepareGrowTextMN
   -- * Used to transform after convertToProperUkrainian from mmsyn6ukr package
   , aux4
 ) where
@@ -282,8 +282,12 @@
 {-| @ since 0.2.0.0
 The function combines the 'prepareTextN' and 'growLinesN' function. Applies needed phonetic language preparations
 to the Ukrainian text and tries to \'grow\' the resulting 'String's in the list so that the number of the words in every
-of them is no greater than the given 'Int' number. 
+of them is no greater than the given first 'Int' number. 
 -}             
-prepareGrowTextN :: Int -> String -> [String]
-prepareGrowTextN n = growLinesN n . prepareTextN n
-{-# INLINE prepareGrowTextN #-}
+prepareGrowTextMN
+  :: Int -- ^ A maximum number of the words or their concatenations in the resulting list of 'String's.
+  -> Int -- ^ A number of words in every 'String' that the function firstly forms. To have some sense of usage, must be less than the first argument.
+  -> String
+  -> [String]
+prepareGrowTextMN m n = growLinesN m . prepareTextN n
+{-# INLINE prepareGrowTextMN #-}
diff --git a/phonetic-languages-ukrainian-array.cabal b/phonetic-languages-ukrainian-array.cabal
--- a/phonetic-languages-ukrainian-array.cabal
+++ b/phonetic-languages-ukrainian-array.cabal
@@ -2,7 +2,7 @@
 --  further documentation, see http://haskell.org/cabal/users-guide/
 
 name:                phonetic-languages-ukrainian-array
-version:             0.2.0.0
+version:             0.2.1.0
 synopsis:            Prepares Ukrainian text to be used as a phonetic language text
 description:         Prepares Ukrainian text to be used as a phonetic language text. Applies needed minimal grammar connections so that the text afterwards can be processed by dobutokO-poetry related programs. Uses arrays instead of vectors.
 homepage:            https://hackage.haskell.org/package/phonetic-languages-ukrainian-array
