diff --git a/System/Console/Docopt/UsageParse.hs b/System/Console/Docopt/UsageParse.hs
--- a/System/Console/Docopt/UsageParse.hs
+++ b/System/Console/Docopt/UsageParse.hs
@@ -93,7 +93,7 @@
                       open <- char '<' 
                       name <- many $ oneOf alphanumSpecial
                       close <- char '>'
-                      return $ [open]++name++[close]
+                      return name
                   upperStyle = do 
                       first <- oneOf uppers
                       rest <- many $ oneOf $ uppers ++ numerics
diff --git a/docopt.cabal b/docopt.cabal
--- a/docopt.cabal
+++ b/docopt.cabal
@@ -1,5 +1,5 @@
 name:                docopt
-version:             0.6.0.1
+version:             0.6.0.2
 synopsis:            A command-line interface parser that will make you smile
 description:         Docopt parses command-line interface usage text that adheres to a familiar syntax, and from it builds a command-line argument parser that will ensure your program is invoked correctly with the available options specified in the usage text. This allows the developer to write a usage text and get an argument parser for free.
 
