diff --git a/file-command-qq.cabal b/file-command-qq.cabal
--- a/file-command-qq.cabal
+++ b/file-command-qq.cabal
@@ -2,17 +2,17 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                file-command-qq
-version:             0.1.0.2
+version:             0.1.0.3
 synopsis:            Quasiquoter for system commands involving filepaths
 description:
  file-command-qq is a simple quasiquoter for running system commands that take a filepath as an argument.
  .
  For instance
  . 
- >>> :set -XOverloadedStrings
- >>> import FileCommand
- >>> import Filesystem.Path
- >>> [s|echo $filename|] "/home/test/thing.txt"
+ >> :set -XOverloadedStrings
+ >> import FileCommand
+ >> import Filesystem.Path
+ >> [s|echo $filename|] "/home/test/thing.txt"
  .
  .
  will return
@@ -31,7 +31,7 @@
  .
  Here is another example
  .
- >>> [s|gcc $path -o $directory$basename.o|] "/home/test/thing.c"
+ >> [s|gcc $path -o $directory$basename.o|] "/home/test/thing.c"
  .
  All "file parts" start with a \'$\'. The \'$\' can be escaped by preceding it with a \'\\\'
  .
diff --git a/src/FileCommand.hs b/src/FileCommand.hs
--- a/src/FileCommand.hs
+++ b/src/FileCommand.hs
@@ -103,7 +103,7 @@
 -- | A simple quasiquoter for executing system commands on a filepath
 --  for example
 --  
---  >>> [s|echo $filename|] "/home/test/thing.txt"
+--  >> [s|echo $filename|] "/home/test/thing.txt"
 --  
 --  will return
 --  
@@ -120,7 +120,7 @@
 --  
 --  Here is another example
 --  
---  >>> [s|gcc $path -o $directory$basename.o|] "/home/test/thing.c"
+--  >> [s|gcc $path -o $directory$basename.o|] "/home/test/thing.c"
 --  
 --  All "file parts" start with a \'$\'. The \'$\' can be escaped by preceding it with a \'\\\'
 --  
