diff --git a/Text/LineBreak.hs b/Text/LineBreak.hs
--- a/Text/LineBreak.hs
+++ b/Text/LineBreak.hs
@@ -155,7 +155,7 @@
     where hw = case mhy of
                  Just hy -> hyphenate hy cs
                  Nothing -> [cs]
-          poss = show $ map cf $ reverse $ zip (inits hw) (tails hw)
+          poss = map cf $ reverse $ zip (inits hw) (tails hw)
             -- poss ~= ["hyphenation\n","hyphen-\nation",
             --          "hy-\nphenation","\nhyphenation"]
 
diff --git a/linebreak.cabal b/linebreak.cabal
--- a/linebreak.cabal
+++ b/linebreak.cabal
@@ -1,5 +1,5 @@
 name:                linebreak
-version:             1.0.0.2
+version:             1.0.0.3
 synopsis:            breaks strings to fit width
 description:         Simple functions to break a String to fit a maximum text
                      width, using Knuth-Liang hyphenation algorhitm.
