diff --git a/brainfuck-tut.cabal b/brainfuck-tut.cabal
--- a/brainfuck-tut.cabal
+++ b/brainfuck-tut.cabal
@@ -2,7 +2,7 @@
 -- documentation, see http://haskell.org/cabal/users-guide/
 
 name:                brainfuck-tut
-version:             0.5.1.0
+version:             0.5.1.1
 synopsis:            A simple BF interpreter.
 -- description:
 license:             BSD3
@@ -14,6 +14,10 @@
 build-type:          Simple
 -- extra-source-files:
 cabal-version:       >=1.18
+
+source-repository head
+    type: git
+    location: git@gitlab.com:cpp.cabrera/brainfuck-tut.git
 
 library
   exposed-modules:
diff --git a/src/Language/Brainfuck/Types.hs b/src/Language/Brainfuck/Types.hs
--- a/src/Language/Brainfuck/Types.hs
+++ b/src/Language/Brainfuck/Types.hs
@@ -32,10 +32,10 @@
 
 -- |`Term` represents the abstract syntax for the BF language
 data Term
-  = IncDP        -- ^ >
+  = IncDP        -- ^ \>
   | DecDP        -- ^ <
   | IncByte      -- ^ +
-  | DecByte      -- ^ -
+  | DecByte      -- ^ \-
   | OutByte      -- ^ .
   | InByte       -- ^ ,
   | JumpForward  -- ^ [
