diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -172,3 +172,7 @@
 * Fourteenth version revised B. Fixed issue with the wrong output option for one of the columns of the propertiesText running output. Changed the
 dependency boundaries so that now it uses latest variants. Please, consider switching to the phonetic-languages-examples package instead because
 it provides the analogous functionality and shows better performance. This one is left for comparison purposes.
+
+## 0.14.3.0 -- 2020-11-10
+
+* Fourteenth version revised C. Fixed issue with the reverse order of the output for the rewritePoem executable.
diff --git a/Lines/Main.hs b/Lines/Main.hs
--- a/Lines/Main.hs
+++ b/Lines/Main.hs
@@ -72,7 +72,7 @@
 circle2 :: String -> String -> [String] -> [String] -> [String]
 circle2 xs choice yss xss
  | null xss = yss
- | otherwise = circle2 (if null rs then [] else last rs) choice (ws:yss) tss
+ | otherwise = circle2 (if null rs then [] else last rs) choice (yss `mappend` [ws]) tss
       where (!zss,!tss) = splitAt 1 xss
             !rs = words . concat $ zss
             !ws = if compare (length rs) 3 == LT then unwords (xs:rs) else lastFrom3 . headU2 . fst . get22 .
@@ -82,7 +82,7 @@
 circle2I :: String -> String -> [String] -> Int -> V.Vector Int -> Float -> Float -> [String] -> [String]
 circle2I xs choice yss numberI vI minE maxE xss
  | null xss = yss
- | otherwise = circle2I (if null rs then [] else last rs) choice (ws:yss) numberI vI minE1 maxE1 tss
+ | otherwise = circle2I (if null rs then [] else last rs) choice (yss `mappend` [ws]) numberI vI minE1 maxE1 tss
       where (!zss,!tss) = splitAt 1 xss
             !rs = words . concat $ zss
             !l3 = (subtract 3) . length $ rs
diff --git a/uniqueness-periods-vector-examples.cabal b/uniqueness-periods-vector-examples.cabal
--- a/uniqueness-periods-vector-examples.cabal
+++ b/uniqueness-periods-vector-examples.cabal
@@ -3,7 +3,7 @@
 -- http://haskell.org/cabal/users-guide/
 
 name:                uniqueness-periods-vector-examples
-version:             0.14.2.0
+version:             0.14.3.0
 synopsis:            Usage examples for the uniqueness-periods-vector series of packages
 description:         Usage examples for the uniqueness-periods-vector series of packages. Several executables are planned to demonstrate the libraries work.
 homepage:            https://hackage.haskell.org/package/uniqueness-periods-vector-examples
