diff --git a/HulkImport.cabal b/HulkImport.cabal
--- a/HulkImport.cabal
+++ b/HulkImport.cabal
@@ -1,6 +1,6 @@
 name:                HulkImport
-version:             0.1.0.0
-synopsis:            Initial project template from stack
+version:             0.1.0.1
+synopsis:            Easily bulk import CSV data to SQL Server
 description:         Please see README.md
 homepage:            http://github.com/tobs169/HulkImport#readme
 license:             BSD3
diff --git a/src/CSV/Parse.hs b/src/CSV/Parse.hs
--- a/src/CSV/Parse.hs
+++ b/src/CSV/Parse.hs
@@ -8,8 +8,8 @@
 import CSV.Types
 
 -- | 'parse' parses text in the CSV format.  Delimiters are ',' and new lines.
--- | Quotation is performed with '"'.
--- | TODO: Files in the wrong format throw an error :(   
+-- Quotation is performed with '"'.
+-- TODO: Files in the wrong format throw an error :(   
 parse :: Text.Text -> CSV Text.Text
 parse text =
     case A.parseOnly csvParser text of
