diff --git a/hs-term-emulator.cabal b/hs-term-emulator.cabal
--- a/hs-term-emulator.cabal
+++ b/hs-term-emulator.cabal
@@ -1,8 +1,8 @@
 cabal-version:      2.4
 name:               hs-term-emulator
-version:            0.1.0.0
+version:            0.1.0.1
 synopsis:           Terminal Emulator written in 100% Haskell
-description:        See: https://github.com/bitc/hs-term-emulator/README.md
+description:        See: https://github.com/bitc/hs-term-emulator#readme
 homepage:           https://github.com/bitc/hs-term-emulator
 bug-reports:        https://github.com/bitc/hs-term-emulator/issues
 license:            MIT
diff --git a/src/System/Terminal/Emulator/Attrs.hs b/src/System/Terminal/Emulator/Attrs.hs
--- a/src/System/Terminal/Emulator/Attrs.hs
+++ b/src/System/Terminal/Emulator/Attrs.hs
@@ -7,11 +7,13 @@
 
 -- | Attrs:
 --
+-- @
 --     00000000 00000000 000000000000uuii
 --     ^^ fg ^^ ^^ bg ^^ ^^^^^^^^^^^^^^^^
 --
 --     ii : ConsoleIntensity (00 = Normal, 01 = Bold, 10 = Faint)
 --     uu : Underlining (00 = NoUnderline, 01 = SingleUnderline, 10 = DoubleUnderline)
+-- @
 type Attrs = Word32
 
 blankAttrs :: Attrs
